Skip to content

Commit 7a66661

Browse files
Paulo Oliveirapaulorochaoliveira
authored andcommitted
Fixes Flaky test by increasing timeout to 1s
fixes #131 Signed-off-by: Paulo Oliveira <paulo.craisse@gmail.com>
1 parent 9c67ddf commit 7a66661

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5096,7 +5096,7 @@ def helper():
50965096

50975097
thread = threading.Thread(target=helper)
50985098
thread.start()
5099-
thread.join(0.1)
5099+
thread.join(1)
51005100
try:
51015101
assert not thread.is_alive()
51025102
assert ok

0 commit comments

Comments
 (0)