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 988d057 commit d9e066dCopy full SHA for d9e066d
test/triangular.jl
@@ -971,9 +971,9 @@ end
971
A = SizedArrays.SizedArray{(2,2)}(P)
972
M = fill(A, 2, 2)
973
U = UnitUpperTriangular(M)
974
- @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
975
L = UnitLowerTriangular(M)
976
- @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
977
978
U = UnitUpperTriangular(P)
979
@test_throws BoundsError U[0,0] = 1
0 commit comments