diff --git a/tests/test_asgi.py b/tests/test_asgi.py index d4f3828..e03dc82 100644 --- a/tests/test_asgi.py +++ b/tests/test_asgi.py @@ -129,10 +129,7 @@ def test_wrong_method_type(application, test_files): def test_large_static_file(application, test_files): - scope = AsgiScopeEmulator({ - "path": "/static/large-file.txt", - "headers": [], - }) + scope = AsgiScopeEmulator({"path": "/static/large-file.txt", "headers": []}) receive = AsgiReceiveEmulator() send = AsgiSendEmulator() asyncio.run(application(scope, receive, send))