From 605f878f9bdda6ee30d79a03b7a51945236804ef Mon Sep 17 00:00:00 2001 From: Samuel Maynard Date: Sat, 13 Sep 2025 12:22:25 +0300 Subject: [PATCH] test_retry: remove unneeded decorator Co-authored-by: Hugo --- tests/unit/test_retry.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/unit/test_retry.py b/tests/unit/test_retry.py index e1374f6..9a043e2 100644 --- a/tests/unit/test_retry.py +++ b/tests/unit/test_retry.py @@ -11,7 +11,6 @@ from vdirsyncer.exceptions import Error as VdirsyncerError from vdirsyncer.http import UsageLimitReached, request -@pytest.mark.asyncio async def _create_mock_response(status: int, body: str | dict): raw_body = body if isinstance(body, dict):