Parametrized more time machine tests in test_update_funding_fees

This commit is contained in:
Sam Germain
2021-10-11 01:31:21 -06:00
parent 3b962433fb
commit 855b26f846
2 changed files with 7 additions and 4 deletions

View File

@@ -120,7 +120,7 @@ class FreqtradeBot(LoggingMixin):
# TODO: funding interval, specified by funding_fee_times on the exchange classes
for time_slot in range(0, 24):
for minutes in [0, 15, 30, 45]:
t = str(time(time_slot, minutes))
t = str(time(time_slot, minutes, 2))
schedule.every().day.at(t).do(update)
def notify_status(self, msg: str) -> None: