Skip to content

Commit

Permalink
test: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
krrishdholakia committed Nov 20, 2024
1 parent 132569d commit 6a816bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_organizations.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 6a816bc

Please sign in to comment.