Skip to content

Commit aab293a

Browse files
authored
Merge pull request #640 from JuliaSymbolics/test/isequal-missing-symbolic
Test: Add `isequal` tests for `Missing` and `Symbolic` types
2 parents a4e55b2 + a3cfff7 commit aab293a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/basics.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,9 @@ end
312312
@syms a b c
313313
@test isequal(a + b, a + b + 0.01 - 0.01)
314314
@test isequal(a + NaN, a + NaN)
315+
316+
@test !isequal(a, missing)
317+
@test !isequal(missing, b)
315318
end
316319

317320
@testset "subtyping" begin

0 commit comments

Comments
 (0)