Skip to content

Commit dfebcb2

Browse files
committed
test: wait longer for server sync
1 parent a72b4fc commit dfebcb2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def test_message_find_by_conversation():
2424
conv = Conversation(name="test")
2525
conv.save()
2626
conv.send("foo", "what the hell")
27-
time.sleep(1) # wait for server sync
27+
time.sleep(2) # wait for server sync
2828
msgs = Message.find_by_conversation(conv.id, limit=1000, reversed=False)
2929
assert_equal(len(msgs), 1)
3030
msg = msgs[0]

0 commit comments

Comments
 (0)