Skip to content

Commit b56f4be

Browse files
committed
Use ⊇ operator
1 parent d23df89 commit b56f4be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/interval_tests/numeric.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -436,8 +436,8 @@ end
436436
end
437437

438438
# approximation used for testing (not to rely on ≈ for intervals)
439-
# ⪆(x, y) = (x ≈ y) && (y ⊆ x)
440-
(x::Interval, y::Interval) = x.lo y.lo && x.hi y.hi && y x
439+
# ⪆(x, y) = (x ≈ y) && (x ⊇ y)
440+
(x::Interval, y::Interval) = x.lo y.lo && x.hi y.hi && x y
441441

442442
@testset "`mod`" begin
443443
r = 0.0625

0 commit comments

Comments
 (0)