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 88e4c4c commit b7a11bdCopy full SHA for b7a11bd
test/triangular.jl
@@ -961,9 +961,9 @@ end
961
A = SizedArrays.SizedArray{(2,2)}(P)
962
M = fill(A, 2, 2)
963
U = UnitUpperTriangular(M)
964
- @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
965
L = UnitLowerTriangular(M)
966
- @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
967
968
U = UnitUpperTriangular(P)
969
@test_throws BoundsError U[0,0] = 1
0 commit comments