We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb648e4 commit 1235c89Copy full SHA for 1235c89
test/triangular.jl
@@ -993,9 +993,9 @@ end
993
A = SizedArrays.SizedArray{(2,2)}(P)
994
M = fill(A, 2, 2)
995
U = UnitUpperTriangular(M)
996
- @test_throws "Cannot `convert` an object of type Int64" U[1,1] = 1
+ @test_throws "Cannot `convert` an object of type $Int" U[1,1] = 1
997
L = UnitLowerTriangular(M)
998
- @test_throws "Cannot `convert` an object of type Int64" L[1,1] = 1
+ @test_throws "Cannot `convert` an object of type $Int" L[1,1] = 1
999
1000
U = UnitUpperTriangular(P)
1001
@test_throws BoundsError U[0,0] = 1
0 commit comments