Skip to content

Commit 0d3eeee

Browse files
committed
fix
1 parent 140bb62 commit 0d3eeee

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/tests/test_raster.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ def test_mosaic_api():
2424

2525
searchid = resp.json()["id"]
2626

27-
resp = httpx.get(f"{raster_endpoint}/searches/{searchid}/-85.6358,36.1624/assets")
27+
resp = httpx.get(
28+
f"{raster_endpoint}/searches/{searchid}/point/-85.6358,36.1624/assets"
29+
)
2830
assert resp.status_code == 200
2931
assert len(resp.json()) == 1
3032
assert list(resp.json()[0]) == ["id", "bbox", "assets", "collection"]
@@ -53,7 +55,7 @@ def test_mosaic_api():
5355
def test_mosaic_collection_api():
5456
"""test mosaic collection."""
5557
resp = httpx.get(
56-
f"{raster_endpoint}/collections/noaa-emergency-response/-85.6358,36.1624/assets"
58+
f"{raster_endpoint}/collections/noaa-emergency-response/point/-85.6358,36.1624/assets"
5759
)
5860
assert resp.status_code == 200
5961
assert len(resp.json()) == 1

0 commit comments

Comments
 (0)