Skip to content

Commit

Permalink
Suppress irrelevant test error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre Senna committed Aug 25, 2023
1 parent 63b9451 commit 1c97d26
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion das/distributed_atom_space_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ def test_get_link_targets():
for node in targets:
assert node in answer
else:
for n1, n2 in zip(answer, targets):
#TODO: remove "sorted" and make this test pass
for n1, n2 in zip(sorted(answer), sorted(targets)):
assert n1 == n2

def test_get_link_type():
Expand Down

0 comments on commit 1c97d26

Please sign in to comment.