We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d64d268 commit f4629d8Copy full SHA for f4629d8
1 file changed
_python_utils_tests/test_time.py
@@ -46,8 +46,8 @@ async def test_aio_timeout_generator(
46
'timeout,interval,interval_multiplier,maximum_interval,iterable,result',
47
[
48
(0.01, 0.006, 0.5, 0.01, 'abc', 'c'),
49
- (0.01, 0.006, 0.5, 0.01, itertools.count, 2),
50
- (0.01, 0.006, 0.5, 0.01, itertools.count(), 2),
+ (0.01, 0.005, 0.5, 0.01, itertools.count, 3),
+ (0.01, 0.005, 0.5, 0.01, itertools.count(), 3),
51
(0.01, 0.006, 1.0, None, 'abc', 'c'),
52
(
53
timedelta(seconds=0.01),
0 commit comments