Skip to content

Commit

Permalink
Fix qr test failure on nightly (JuliaArrays#1013)
Browse files Browse the repository at this point in the history
  • Loading branch information
thchr authored Mar 12, 2022
1 parent ec2dc5e commit 2976012
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/qr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ Random.seed!(42)
test_qr(arr)
end
# some special cases
for arr in [
for arr in (
(@MMatrix randn(3,2)),
(@MMatrix randn(2,3)),
(@SMatrix([0 1 2; 0 2 3; 0 3 4; 0 4 5])),
(@SMatrix zeros(Int,4,4)),
(@SMatrix([1//2 1//1])),
(@SMatrix randn(17,18)), # fallback to LAPACK
(@SMatrix randn(18,17))
]
)
test_qr(arr)
end

Expand Down

0 comments on commit 2976012

Please sign in to comment.