Skip to content

Commit

Permalink
more test tuning... timings are hard to test
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Sep 25, 2024
1 parent f4629d8 commit 46c2854
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _python_utils_tests/test_time.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ async def test_aio_timeout_generator(
'timeout,interval,interval_multiplier,maximum_interval,iterable,result',
[
(0.01, 0.006, 0.5, 0.01, 'abc', 'c'),
(0.01, 0.005, 0.5, 0.01, itertools.count, 3),
(0.01, 0.005, 0.5, 0.01, itertools.count(), 3),
(0.01, 0.007, 0.5, 0.01, itertools.count, 2),
(0.01, 0.007, 0.5, 0.01, itertools.count(), 2),
(0.01, 0.006, 1.0, None, 'abc', 'c'),
(
timedelta(seconds=0.01),
Expand Down

0 comments on commit 46c2854

Please sign in to comment.