From 1299beac429242362aab9417ae20f9d18760bd8e Mon Sep 17 00:00:00 2001 From: Vincent Sarago Date: Thu, 25 Apr 2024 14:47:04 +0200 Subject: [PATCH] remove print (#677) --- stac_fastapi/api/tests/test_app_prefix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stac_fastapi/api/tests/test_app_prefix.py b/stac_fastapi/api/tests/test_app_prefix.py index 0e76e456..5d604477 100644 --- a/stac_fastapi/api/tests/test_app_prefix.py +++ b/stac_fastapi/api/tests/test_app_prefix.py @@ -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()