Skip to content

Commit 046dfb0

Browse files
bramtaylKeno
authored andcommitted
missing NamedTuple test (#34447)
1 parent bc0e5d1 commit 046dfb0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/namedtuple.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
@test (a=1,b=2) != (b=1,a=2)
4949
@test NamedTuple() === NamedTuple()
5050
@test NamedTuple() != (a=1,)
51+
@test !isequal(NamedTuple(), (a=1,))
5152

5253
@test string((a=1,)) == "(a = 1,)"
5354
@test string((name="", day=:today)) == "(name = \"\", day = :today)"

0 commit comments

Comments
 (0)