Skip to content

Commit ff0feaa

Browse files
committed
Fix broken test.
1 parent 3b362e6 commit ff0feaa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_relational_operand.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,4 +511,6 @@ def test_union_multiple():
511511
# https://github.com/datajoint/datajoint-python/issues/926
512512
q1 = IJ & dict(j=2)
513513
q2 = (IJ & dict(j=2, i=0)) + (IJ & dict(j=2, i=1)) + (IJ & dict(j=2, i=2))
514-
assert q1.fetch() == q2.fetch()
514+
x = set(zip(*q1.fetch('i', 'j')))
515+
y = set(zip(*q2.fetch('i', 'j')))
516+
assert_set_equal(x, y)

0 commit comments

Comments
 (0)