Skip to content

Commit f4629d8

Browse files
committed
made tests slightly less flakey
1 parent d64d268 commit f4629d8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

_python_utils_tests/test_time.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ async def test_aio_timeout_generator(
4646
'timeout,interval,interval_multiplier,maximum_interval,iterable,result',
4747
[
4848
(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),
49+
(0.01, 0.005, 0.5, 0.01, itertools.count, 3),
50+
(0.01, 0.005, 0.5, 0.01, itertools.count(), 3),
5151
(0.01, 0.006, 1.0, None, 'abc', 'c'),
5252
(
5353
timedelta(seconds=0.01),

0 commit comments

Comments
 (0)