Skip to content

Commit

Permalink
Merge pull request #49334 from JuliaLang/sf/accelerate_fixes
Browse files Browse the repository at this point in the history
Further relax another piece of the AbstractQ tests
  • Loading branch information
staticfloat authored Apr 12, 2023
2 parents b554e8f + 5a6ce6a commit 46e27e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stdlib/LinearAlgebra/test/abstractq.jl
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ n = 5
@test Q[:,1] == Q.Q[:,1]
@test Q[1,1] == Q.Q[1,1]
@test Q[:] == Q.Q[:]
@test Q[:,1:3] == Q.Q[:,1:3] == Matrix(Q)[:,1:3]
@test Q[:,1:3] == Q.Q[:,1:3]
@test Q[:,1:3] Matrix(Q)[:,1:3]
@test_throws BoundsError Q[0,1]
@test_throws BoundsError Q[n+1,1]
@test_throws BoundsError Q[1,0]
Expand Down

0 comments on commit 46e27e9

Please sign in to comment.