We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b359f6 commit 0274b64Copy full SHA for 0274b64
stac_fastapi/tests/resources/test_item.py
@@ -483,7 +483,7 @@ async def test_item_search_temporal_window_timezone_get(
483
item_date = rfc3339_str_to_datetime(test_item["properties"]["datetime"])
484
item_date_before = item_date - timedelta(seconds=1)
485
item_date_before = item_date_before.replace(tzinfo=tzinfo)
486
- item_date_after = item_date + timedelta(seconds=1)
+ item_date_after = item_date + timedelta(hours=1, seconds=1)
487
item_date_after = item_date_after.replace(tzinfo=tzinfo)
488
489
params = {
0 commit comments