fixed test

This commit is contained in:
Yazeed Al Oyoun 2020-03-11 17:04:51 +01:00
parent a85d17327b
commit a82cdf0add
1 changed files with 2 additions and 2 deletions

View File

@ -282,7 +282,7 @@ class IStrategy(ABC):
interval_minutes = timeframe_to_minutes(interval)
if (arrow.utcnow() - signal_date).total_seconds() // 60 >= interval_minutes:
logger.warning('Old candle for pair %s. Last tick is %s minutes old',
pair, (arrow.utcnow() - signal_date).total_seconds() // 60)
pair, int(arrow.utcnow() - signal_date).total_seconds() // 60)
return False, False
# Check if dataframe is out of date
@ -291,7 +291,7 @@ class IStrategy(ABC):
logger.warning(
'Outdated history for pair %s. Last tick is %s minutes old',
pair,
(arrow.utcnow() - signal_date).total_seconds() // 60
int((arrow.utcnow() - signal_date).total_seconds() // 60)
)
return False, False