We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 545e6de commit 761963bCopy full SHA for 761963b
tests/api/test_api.py
@@ -833,9 +833,11 @@ async def test_no_extension(
833
"/collections", json=load_test_data("test_collection.json")
834
)
835
collection_id = resp.json()["id"]
836
- _ = await client.post("/collections", json=load_test_data("test_item.json"))
+ _ = await client.post(
837
+ "http://test/collections", json=load_test_data("test_item.json")
838
+ )
839
resp = await client.post(
- f"/collections/{collection_id}/items",
840
+ f"http://test/collections/{collection_id}/items",
841
json=load_test_data("test_item.json"),
842
843
0 commit comments