Skip to content

Commit

Permalink
move target for live data back to 60 days
Browse files Browse the repository at this point in the history
  • Loading branch information
akaszynski committed Nov 2, 2023
1 parent df108b5 commit 08b1627
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions requirements_test.txt

This file was deleted.

2 changes: 1 addition & 1 deletion tests/test_async_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ async def test_productquery_update(api):
# should be live data
now = datetime.datetime.now()
delta = now - product["data"]["USED_time"][-1]
assert delta.days <= 35
assert delta.days <= 60

# check for empty arrays
history = product["data"]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def test_productquery_update(api):
# should be live data
now = datetime.datetime.now()
delta = now - product["data"]["USED_time"][-1]
assert delta.days <= 35
assert delta.days <= 60

# check for empty arrays
history = product["data"]
Expand Down

0 comments on commit 08b1627

Please sign in to comment.