File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -830,12 +830,14 @@ async def test_no_extension(
830830 try :
831831 async with AsyncClient (transport = ASGITransport (app = app )) as client :
832832 resp = await client .post (
833- "/collections" , json = load_test_data ("test_collection.json" )
833+ "http://test /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
You can’t perform that action at this time.
0 commit comments