From 7aebdc9b7b6d2f81b6d3095206dad1da44d297fb Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Fri, 24 Dec 2021 16:52:28 +0100 Subject: [PATCH] Fix flaky test Time is weird, and really this assert doesn't add that much to the party. Fixes #2904 --- python/tests/test_account.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/tests/test_account.py b/python/tests/test_account.py index 394cca304..a2c00e4ff 100644 --- a/python/tests/test_account.py +++ b/python/tests/test_account.py @@ -983,7 +983,8 @@ class TestOnlineAccount: assert msg2 in chat2.get_messages() assert chat2.is_contact_request() assert chat2.count_fresh_messages() == 1 - assert msg2.time_received >= msg1.time_sent + # Like it or not, this assert is flaky + # assert msg2.time_received >= msg1.time_sent lp.sec("create new chat with contact and verify it's proper") chat2b = msg2.create_chat()