Skip to content

Commit df1e9e9

Browse files
committed
Fix time for CircleEnergyLogsResponses
1 parent e298450 commit df1e9e9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/stick_test_data.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313

1414

1515
# generate energy log timestamps with fixed hour timestamp used in tests
16-
hour_timestamp = utc_now.replace(minute=0, second=0, microsecond=0)
16+
# 2025-04-03 22:00:00
17+
hour_timestamp = datetime(25, 4, 3, 22, 0, 0) # utc_now.replace(minute=0, second=0, microsecond=0)
1718

1819
LOG_TIMESTAMPS = {}
1920
_one_hour = timedelta(hours=1)

0 commit comments

Comments
 (0)