Skip to content

Commit

Permalink
fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ariana Barzinpour authored and omad committed Mar 9, 2023
1 parent 9342411 commit d08ab5f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions integration_tests/test_stac.py
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,12 @@ def test_stac_links(stac_client: FlaskClient):
"type": "application/json",
"title": "Item Search",
},
{
"rel": "http://www.opengis.net/def/rel/ogc/1.0/queryables",
"href": "http://localhost/stac/queryables",
"type": "application/json",
"title": "Queryables",
},
]

# All expected products and their dataset counts.
Expand Down Expand Up @@ -682,6 +688,10 @@ def test_stac_collection(stac_client: FlaskClient):
"rel": "items",
"href": stac_url("collections/high_tide_comp_20p/items"),
},
{
"rel": "http://www.opengis.net/def/rel/ogc/1.0/queryables",
"href": stac_url("collections/high_tide_comp_20p/queryables"),
},
{
"rel": "child",
"href": stac_url("catalogs/high_tide_comp_20p/2008-6"),
Expand Down

0 comments on commit d08ab5f

Please sign in to comment.