Skip to content

Commit

Permalink
API: Cleanup comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
ABPLMC committed Sep 23, 2024
1 parent db46b9b commit 1b526b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/tests/test_archive_querier.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,8 +601,8 @@ def test_query_latest_just_latest_table(table_maker, querier, record_maker):


def test_query_latest_future_record_exceeds_lookforward(table_maker, querier, record_maker):
future_start = (int(time.time() * 1000) + 25 * 60 * 60 * 1000) # 25 hours ahead
future_end = (int(time.time() * 1000) + 26 * 60 * 60 * 1000) # ends one hour later
future_start = (int(time.time() * 1000) + 25 * 60 * 60 * 1000)
future_end = (int(time.time() * 1000) + 26 * 60 * 60 * 1000)
record = record_maker(what='meow', where='tree', start=future_start, end=future_end)

default_table, latest_table = table_maker([])
Expand Down

0 comments on commit 1b526b1

Please sign in to comment.