From 6a816bceee035c0b5f81c3f2b37d49cd3b8b31c0 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Wed, 20 Nov 2024 14:13:07 +0530 Subject: [PATCH] test: fix test --- tests/test_organizations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_organizations.py b/tests/test_organizations.py index 947f260196d8..9bf6660d6738 100644 --- a/tests/test_organizations.py +++ b/tests/test_organizations.py @@ -34,7 +34,7 @@ async def list_organization(session, i): url = "http://0.0.0.0:4000/organization/list" headers = {"Authorization": "Bearer sk-1234", "Content-Type": "application/json"} - async with session.post(url, headers=headers) as response: + async with session.get(url, headers=headers) as response: status = response.status response_json = await response.json()