Skip to content

Commit b26d727

Browse files
committed
Fix test
1 parent a2bec92 commit b26d727

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/linalg.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ A = randn(MersenneTwister(123), n+m, n+m)
88

99
for T in (UpperTriangular,)
1010
B = T(A)
11-
@test B*Array(FF \ b) b
11+
@test B*Array(B \ b) b
1212
bbb = copy(b)
13-
@test ldiv!(bbb, FF, b) === bbb
13+
@test ldiv!(bbb, B, b) === bbb
1414
copyto!(bbb, b)
15-
@test ldiv!(FF, bbb) === bbb
15+
@test ldiv!(B, bbb) === bbb
1616
@test B*Array(bbb) b
1717
end
1818

0 commit comments

Comments
 (0)