Skip to content

Commit 66b861d

Browse files
committed
Fix tests
1 parent 6a2798f commit 66b861d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/runtests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -445,11 +445,11 @@ end
445445
@test -(x, x1) == OffsetInteger{0,Int64}(-1)
446446
#test for /
447447
@test div(x, x1) == OffsetInteger{0,Int64}(0)
448-
@test ==(x, x1)
449-
@test >=(x, x1)
448+
@test !==(x, x1)
449+
@test !>=(x, x1)
450450
@test <=(x, x1)
451451
@test !>(x, x1)
452-
@test !<(x, x1)
452+
@test <(x, x1)
453453
end
454454

455455
end # testset "GeometryBasics"

0 commit comments

Comments
 (0)