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 eef054d commit 79f13b6Copy full SHA for 79f13b6
uasyncio.core/test_full_wait.py
@@ -31,4 +31,6 @@ def wait(self, delay):
31
pass
32
33
print(loop.msgs)
34
-assert loop.msgs == ['I should be run first, time: 100', 'I should be run second, time: 500']
+# .wait() is now called on each loop iteration, and for our mock case, it means that
35
+# at the time of running, self.time() will be skewed by 100 virtual time units.
36
+assert loop.msgs == ['I should be run first, time: 200', 'I should be run second, time: 600']
0 commit comments