Skip to content

Commit 2976012

Browse files
authored
Fix qr test failure on nightly (#1013)
1 parent ec2dc5e commit 2976012

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/qr.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ Random.seed!(42)
4848
test_qr(arr)
4949
end
5050
# some special cases
51-
for arr in [
51+
for arr in (
5252
(@MMatrix randn(3,2)),
5353
(@MMatrix randn(2,3)),
5454
(@SMatrix([0 1 2; 0 2 3; 0 3 4; 0 4 5])),
5555
(@SMatrix zeros(Int,4,4)),
5656
(@SMatrix([1//2 1//1])),
5757
(@SMatrix randn(17,18)), # fallback to LAPACK
5858
(@SMatrix randn(18,17))
59-
]
59+
)
6060
test_qr(arr)
6161
end
6262

0 commit comments

Comments
 (0)