Skip to content

Commit

Permalink
Merge pull request #640 from JuliaSymbolics/test/isequal-missing-symb…
Browse files Browse the repository at this point in the history
…olic

Test: Add `isequal` tests for `Missing` and `Symbolic` types
  • Loading branch information
bowenszhu authored Aug 28, 2024
2 parents a4e55b2 + a3cfff7 commit aab293a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/basics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,9 @@ end
@syms a b c
@test isequal(a + b, a + b + 0.01 - 0.01)
@test isequal(a + NaN, a + NaN)

@test !isequal(a, missing)
@test !isequal(missing, b)
end

@testset "subtyping" begin
Expand Down

0 comments on commit aab293a

Please sign in to comment.