aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtAsyncio/qasyncio_test_chain.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtAsyncio/qasyncio_test_chain.py')
-rw-r--r--sources/pyside6/tests/QtAsyncio/qasyncio_test_chain.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside6/tests/QtAsyncio/qasyncio_test_chain.py b/sources/pyside6/tests/QtAsyncio/qasyncio_test_chain.py
index f45b51a71..a0a949720 100644
--- a/sources/pyside6/tests/QtAsyncio/qasyncio_test_chain.py
+++ b/sources/pyside6/tests/QtAsyncio/qasyncio_test_chain.py
@@ -22,8 +22,8 @@ class QAsyncioTestCaseChain(unittest.TestCase):
return result
async def chain(self, output, n):
- link1 = await self.link(output, n, 1)
- link2 = await self.link(output, n, 2)
+ link1 = await self.link(output, n, 0.2)
+ link2 = await self.link(output, n, 0.5)
output += f"chain {n}: {link1} -> {link2} "
async def gather(self, output, *args):