diff --git a/wetb/prepost/tests/test_Simulations.py b/wetb/prepost/tests/test_Simulations.py
index 9d6ba1d06e9e1632252d41fbc9d66b3b498c739a..6c4118814df252e0db642bf66d7c4fb3dd8bcad4 100644
--- a/wetb/prepost/tests/test_Simulations.py
+++ b/wetb/prepost/tests/test_Simulations.py
@@ -59,7 +59,7 @@ class TestGenerateInputs(unittest.TestCase):
             pkl_remote = pickle.load(FILE)
         with open(os.path.join(ref, 'remote.pkl'), 'rb') as FILE:
             pkl_ref = pickle.load(FILE)
-        self.assertEqual(pkl_remote, pkl_ref)
+        self.assertTrue(pkl_remote == pkl_ref)
 
 
 if __name__ == "__main__":