Skip to content

Commit f3f4718

Browse files
committed
Update tests due to Sanic's breaking change
1 parent 6df6bba commit f3f4718

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tests/adapter_tests_async/test_async_sanic.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,9 +219,7 @@ async def test_oauth(self):
219219
async def endpoint(req: Request):
220220
return await app_handler.handle(req)
221221

222-
_, response = await api.asgi_client.get(
223-
url="/slack/install", allow_redirects=False
224-
)
222+
_, response = await api.asgi_client.get(url="/slack/install")
225223
assert response.status_code == 200
226224
assert response.headers.get("content-type") == "text/html; charset=utf-8"
227225

0 commit comments

Comments
 (0)