Skip to content

Commit 1b53d7e

Browse files
committed
testing reliability improvements for #42
1 parent 2e35156 commit 1b53d7e

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

_python_utils_tests/test_time.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ async def test_aio_timeout_generator(
4545
@pytest.mark.parametrize(
4646
'timeout,interval,interval_multiplier,maximum_interval,iterable,result',
4747
[
48-
(0.01, 0.006, 0.5, 0.01, 'abc', 'c'),
49-
(0.01, 0.007, 0.5, 0.01, itertools.count, 2),
50-
(0.01, 0.007, 0.5, 0.01, itertools.count(), 2),
51-
(0.01, 0.006, 1.0, None, 'abc', 'c'),
48+
(0.1, 0.06, 0.5, 0.1, 'abc', 'c'),
49+
(0.1, 0.07, 0.5, 0.1, itertools.count, 2),
50+
(0.1, 0.07, 0.5, 0.1, itertools.count(), 2),
51+
(0.1, 0.06, 1.0, None, 'abc', 'c'),
5252
(
53-
timedelta(seconds=0.01),
54-
timedelta(seconds=0.006),
53+
timedelta(seconds=0.1),
54+
timedelta(seconds=0.06),
5555
2.0,
56-
timedelta(seconds=0.01),
56+
timedelta(seconds=0.1),
5757
itertools.count,
5858
2,
5959
),

0 commit comments

Comments
 (0)