Fix default argument handling for timeframe_to_nextdate

This commit is contained in:
Matthias
2019-08-12 20:37:11 +02:00
parent 23a70932d2
commit ca739f71fb
2 changed files with 7 additions and 1 deletions

View File

@@ -1588,6 +1588,9 @@ def test_timeframe_to_prev_date():
for interval, result in tf_list:
assert timeframe_to_prev_date(interval, date) == result
date = datetime.now(tz=timezone.utc)
assert timeframe_to_prev_date("5m", date) < date
def test_timeframe_to_next_date():
# 2019-08-12 13:22:08
@@ -1609,3 +1612,6 @@ def test_timeframe_to_next_date():
for interval, result in tf_list:
assert timeframe_to_next_date(interval, date) == result
date = datetime.now(tz=timezone.utc)
assert timeframe_to_next_date("5m", date) > date