fix test len active callbacks

This commit is contained in:
Ishaan Jaff 2024-05-03 14:32:13 -07:00
parent 3997ea6442
commit e5311d35f2

View file

@ -42,6 +42,7 @@ async def get_active_callbacks(session):
url = "http://0.0.0.0:4000/active/callbacks" url = "http://0.0.0.0:4000/active/callbacks"
headers = { headers = {
"Content-Type": "application/json", "Content-Type": "application/json",
"Authorization": "Bearer sk-1234",
} }
async with session.get(url, headers=headers) as response: async with session.get(url, headers=headers) as response: