From 0a2223454056b0838d9bae34be3cda15932b5206 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Tue, 21 Nov 2023 22:59:19 +0000 Subject: [PATCH] Fix pytest.mark.asyncio warning --- tests/test_auth_async.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_auth_async.py b/tests/test_auth_async.py index a5673dfc..0ee5597c 100644 --- a/tests/test_auth_async.py +++ b/tests/test_auth_async.py @@ -140,7 +140,6 @@ async def async_view(request): @pytest.mark.skipif(django.VERSION < (3, 1), reason="requires django 3.1 or higher") -@pytest.mark.asyncio def test_async_authenticate_method_in_sync_context(): class KeyAuth(APIKeyQuery): async def authenticate(self, request, key):