Skip to content

Commit 1299bea

Browse files
remove print (#677)
1 parent 47704ad commit 1299bea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stac_fastapi/api/tests/test_app_prefix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test_api_prefix(TestCoreClient, prefix):
5151
collections = client.get(f"{prefix}/collections")
5252
assert collections.status_code == 200, collections.json()
5353
collection_id = collections.json()["collections"][0]["id"]
54-
print(collections.json()["links"])
54+
5555
collection = client.get(f"{prefix}/collections/{collection_id}")
5656
assert collection.status_code == 200, collection.json()
5757

0 commit comments

Comments
 (0)