Skip to content

Commit 69a644a

Browse files
committed
fix failing test
1 parent e07825a commit 69a644a

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

test/test_BA_ABA_matrix.jl

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,11 @@ end
9090
for mat in [a, ba, aba]
9191
test_value = false
9292
try
93-
show(@eval a)
93+
show(@eval $mat)
9494
test_value = true
9595
catch err
96-
if err isa Exception
97-
test_value = false
98-
end
96+
@error err
97+
test_value = false
9998
end
10099
@test test_value
101100
end

0 commit comments

Comments
 (0)