File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
tests/integrations/django/asgi Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -597,8 +597,7 @@ def get_response(): ...
597597async def test_asgi_mixin_iscoroutinefunction_after_3_12 ():
598598 sentry_asgi_mixin = _asgi_middleware_mixin_factory (lambda : None )
599599
600- async def get_response ():
601- ...
600+ async def get_response (): ...
602601
603602 instance = sentry_asgi_mixin (get_response )
604603 assert inspect .iscoroutinefunction (instance )
@@ -613,8 +612,7 @@ async def get_response():
613612def test_asgi_mixin_iscoroutinefunction_when_not_async_after_3_12 ():
614613 sentry_asgi_mixin = _asgi_middleware_mixin_factory (lambda : None )
615614
616- def get_response ():
617- ...
615+ def get_response (): ...
618616
619617 instance = sentry_asgi_mixin (get_response )
620618 assert not inspect .iscoroutinefunction (instance )
You can’t perform that action at this time.
0 commit comments