aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtAsyncio/qasyncio_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtAsyncio/qasyncio_test.py')
-rw-r--r--sources/pyside6/tests/QtAsyncio/qasyncio_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtAsyncio/qasyncio_test.py b/sources/pyside6/tests/QtAsyncio/qasyncio_test.py
index 953483818..f3c971285 100644
--- a/sources/pyside6/tests/QtAsyncio/qasyncio_test.py
+++ b/sources/pyside6/tests/QtAsyncio/qasyncio_test.py
@@ -12,7 +12,7 @@ from PySide6.QtAsyncio import QAsyncioEventLoopPolicy
class QAsyncioTestCase(unittest.TestCase):
async def sleep(self, output):
output += "Hello"
- await asyncio.sleep(1)
+ await asyncio.sleep(0.2)
output += "World"
async def gather(self, output):