Skip to content

Commit 761963b

Browse files
committed
fix
1 parent 545e6de commit 761963b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/api/test_api.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -833,9 +833,11 @@ async def test_no_extension(
833833
"/collections", json=load_test_data("test_collection.json")
834834
)
835835
collection_id = resp.json()["id"]
836-
_ = await client.post("/collections", json=load_test_data("test_item.json"))
836+
_ = await client.post(
837+
"http://test/collections", json=load_test_data("test_item.json")
838+
)
837839
resp = await client.post(
838-
f"/collections/{collection_id}/items",
840+
f"http://test/collections/{collection_id}/items",
839841
json=load_test_data("test_item.json"),
840842
)
841843

0 commit comments

Comments
 (0)