Skip to content

Commit 4f7e880

Browse files
authored
Merge pull request #136 from paulorochaoliveira/main
Issue 131: Fixes Flaky test by increasing timeout to 1s
2 parents 9c67ddf + 7a66661 commit 4f7e880

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)