Skip to content

Commit 0274b64

Browse files
committed
test_item_search_temporal_window_get fix.
1 parent 2b359f6 commit 0274b64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stac_fastapi/tests/resources/test_item.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ async def test_item_search_temporal_window_timezone_get(
483483
item_date = rfc3339_str_to_datetime(test_item["properties"]["datetime"])
484484
item_date_before = item_date - timedelta(seconds=1)
485485
item_date_before = item_date_before.replace(tzinfo=tzinfo)
486-
item_date_after = item_date + timedelta(seconds=1)
486+
item_date_after = item_date + timedelta(hours=1, seconds=1)
487487
item_date_after = item_date_after.replace(tzinfo=tzinfo)
488488

489489
params = {

0 commit comments

Comments
 (0)