Skip to content

Commit 47611bc

Browse files
committed
Fix another test by allowing minor differences
1 parent ed1a0b8 commit 47611bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/test_muladd.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,6 +692,6 @@ Random.seed!(0)
692692
rng = StableRNG(1)
693693
X = randn(rng, ComplexF64, 8, 4)
694694
Y = randn(rng, 8, 2)
695-
@test all(mul(Y',X) .=== Y'X)
695+
@test all(isapprox.(mul(Y', X), Y'X; atol=0.000001))
696696
end
697697
end

0 commit comments

Comments
 (0)