Skip to content
Snippets Groups Projects
Commit d6c6ed01 authored by David Verelst's avatar David Verelst
Browse files

prepost.Simulations: try fix dict compare in test

parent 964302e7
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -59,7 +59,7 @@ class TestGenerateInputs(unittest.TestCase): ...@@ -59,7 +59,7 @@ class TestGenerateInputs(unittest.TestCase):
pkl_remote = pickle.load(FILE) pkl_remote = pickle.load(FILE)
with open(os.path.join(ref, 'remote.pkl'), 'rb') as FILE: with open(os.path.join(ref, 'remote.pkl'), 'rb') as FILE:
pkl_ref = pickle.load(FILE) pkl_ref = pickle.load(FILE)
self.assertEqual(pkl_remote, pkl_ref) self.assertTrue(pkl_remote == pkl_ref)
if __name__ == "__main__": if __name__ == "__main__":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment