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 43d60ce commit 962213eCopy full SHA for 962213e
tests/test_base.py
@@ -163,9 +163,8 @@ def cb(inc):
163
164
at = self.loop.time() + 0.05
165
166
- self.loop.call_at(at, cb, 10)
167
self.loop.call_at(at, cb, 100).cancel()
168
- self.loop.call_at(at, cb, 1)
+ self.loop.call_at(at, cb, 10)
169
170
started = time.monotonic()
171
self.loop.run_forever()
@@ -174,7 +173,7 @@ def cb(inc):
174
173
self.assertLess(finished - started, 0.07)
175
self.assertGreater(finished - started, 0.045)
176
177
- self.assertEqual(i, 11)
+ self.assertEqual(i, 10)
178
179
def test_check_thread(self):
180
def check_thread(loop, debug):
0 commit comments