Skip to content

Commit d0e6284

Browse files
authored
Merge branch 'main' into updated-vsc-extension
2 parents 89ceca8 + 73f6fa0 commit d0e6284

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/test_comparator.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import decimal
66
import re
77
import sys
8+
import uuid
89
from enum import Enum, Flag, IntFlag, auto
910
from pathlib import Path
1011
import array # Add import for array
@@ -241,6 +242,12 @@ class Color4(IntFlag):
241242
assert not comparator(empty_arr_i1, empty_arr_f)
242243
assert not comparator(empty_arr_i1, arr1)
243244

245+
id1 = uuid.uuid4()
246+
id3 = uuid.uuid4()
247+
assert comparator(id1, id1)
248+
assert not comparator(id1, id3)
249+
250+
244251

245252

246253
def test_numpy():

0 commit comments

Comments
 (0)