We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61c24c3 commit c2aba5bCopy full SHA for c2aba5b
asyntest.py
@@ -303,7 +303,7 @@ async def cond03(): # Maintain a count of seconds
303
tim += 1
304
305
def predicate():
306
- return tim >= 12
+ return tim >= 8 # 12
307
308
async def cond04(n, barrier):
309
with await cond:
@@ -344,9 +344,9 @@ def condition_test():
344
cond02 2 triggered. tim = 5
345
cond02 0 triggered. tim = 7
346
cond04 99 Awaiting notification and predicate.
347
-cond04 99 triggered. tim = 13
+cond04 99 triggered. tim = 9
348
Done.
349
-''', 16)
+''', 13)
350
loop = asyncio.get_event_loop()
351
loop.run_until_complete(cond_go(loop))
352
0 commit comments