Skip to content

Commit d5fdf04

Browse files
authored
Fix typo in tests introduced by #21858 (#59102)
That [2017 PR](#21858) used very old types and had a semantic merge conflict.
1 parent c5ba4e2 commit d5fdf04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/complex.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -934,8 +934,8 @@ end
934934

935935
@testset "eps" begin
936936
@test eps(1.0+1.0im) === 3.1401849173675503e-16
937-
@test eps(Complex128) === eps(1.0+1.0im)
938-
@test eps(Complex64) === 1.6858739f-7
937+
@test eps(Complex{Float64}) === eps(1.0+1.0im)
938+
@test eps(Complex{Float32}) === 1.6858739f-7
939939
@test eps(Float32(1.0)+Float32(1.0)im) === eps(Complex{Float32})
940940
end
941941

0 commit comments

Comments
 (0)