Skip to content

Commit c3567f1

Browse files
committed
Fix tests
1 parent c184cd1 commit c3567f1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/aio/test_threaded_client.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# limitations under the License
1313

1414
import pickle
15+
import time
1516
from unittest import mock
1617

1718
# noinspection PyPackageRequirements
@@ -46,6 +47,7 @@ def test_clone():
4647
async_client = ThreadedRPClient(*args, **kwargs)
4748
task1 = async_client.create_task(__empty_string())
4849
task2 = async_client.create_task(__empty_string())
50+
time.sleep(0.1)
4951
task1.blocking_result()
5052
task2.blocking_result()
5153
async_client._add_current_item(task1)

0 commit comments

Comments
 (0)