Skip to content

Commit

Permalink
remove print (#677)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago authored Apr 25, 2024
1 parent 47704ad commit 1299bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stac_fastapi/api/tests/test_app_prefix.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def test_api_prefix(TestCoreClient, prefix):
collections = client.get(f"{prefix}/collections")
assert collections.status_code == 200, collections.json()
collection_id = collections.json()["collections"][0]["id"]
print(collections.json()["links"])

collection = client.get(f"{prefix}/collections/{collection_id}")
assert collection.status_code == 200, collection.json()

Expand Down

0 comments on commit 1299bea

Please sign in to comment.