Remove left-over debug statements

This commit is contained in:
Raphael Michel
2022-07-21 09:14:38 +02:00
parent 4cc249e20e
commit d628acc62a
9 changed files with 1 additions and 13 deletions

View File

@@ -63,7 +63,6 @@ def compare_ignoring_order(data1, data2):
try:
assert set(data1) == set(data2)
except:
print(data1, data2)
assert len(data1) == len(data2) and all(data1.count(i) == data2.count(i) for i in data1)
elif isinstance(data1, dict) and isinstance(data2, dict):
assert set(data1.keys()) == set(data2.keys())