Skip to content

Commit a1ef500

Browse files
committed
Test for type equality in f64 tests
1 parent 2b04804 commit a1ef500

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -456,8 +456,8 @@ end
456456
end
457457

458458
@testset "Base Julia issue #17474" begin
459-
@test SF.f64(complex(1f0,1f0)) == complex(1.0, 1.0)
460-
@test SF.f64(1f0) == 1.0
459+
@test SF.f64(complex(1f0,1f0)) === complex(1.0, 1.0)
460+
@test SF.f64(1f0) === 1.0
461461

462462
@test typeof(SF.eta(big"2")) == BigFloat
463463
@test typeof(SF.zeta(big"2")) == BigFloat

0 commit comments

Comments
 (0)