We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e35156 commit 1b53d7eCopy full SHA for 1b53d7e
1 file changed
_python_utils_tests/test_time.py
@@ -45,15 +45,15 @@ async def test_aio_timeout_generator(
45
@pytest.mark.parametrize(
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.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'),
+ (0.1, 0.06, 0.5, 0.1, 'abc', 'c'),
+ (0.1, 0.07, 0.5, 0.1, itertools.count, 2),
+ (0.1, 0.07, 0.5, 0.1, itertools.count(), 2),
+ (0.1, 0.06, 1.0, None, 'abc', 'c'),
52
(
53
- timedelta(seconds=0.01),
54
- timedelta(seconds=0.006),
+ timedelta(seconds=0.1),
+ timedelta(seconds=0.06),
55
2.0,
56
57
itertools.count,
58
2,
59
),
0 commit comments