diff options
author | 2019-12-13 09:29:06 +0700 | |
---|---|---|
committer | 2019-12-13 09:29:06 +0700 | |
commit | 66d4b93593b95bfa6999b70aca53328d83710c44 (patch) | |
tree | 447499587a72106d5a6adf4783afee986d9ff614 | |
parent | Added tests for `until_expiration` (diff) |
Fixed a typo ( due to poor copy pasta and eyeballing skills )
-rw-r--r-- | tests/bot/utils/test_time.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bot/utils/test_time.py b/tests/bot/utils/test_time.py index bd04de28b..69f35f2f5 100644 --- a/tests/bot/utils/test_time.py +++ b/tests/bot/utils/test_time.py @@ -121,7 +121,7 @@ class TimeTests(unittest.TestCase): test_cases = ( (None, None, None, None), - # To make sure that date_from and max_units are not touched + # To make sure that now and max_units are not touched (None, 'Why hello there!', None, None), (None, None, float('inf'), None), (None, 'Why hello there!', float('inf'), None), |