From 37a7f9bea873bdae77f2961d72ae7799b95a3bc7 Mon Sep 17 00:00:00 2001 From: Hugo Osvaldo Barrera Date: Mon, 30 Jan 2023 23:00:16 +0100 Subject: [PATCH] This test is not async --- tests/storage/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/storage/__init__.py b/tests/storage/__init__.py index ea508b6..caad26f 100644 --- a/tests/storage/__init__.py +++ b/tests/storage/__init__.py @@ -193,8 +193,7 @@ class StorageTests: ) assert {href: etag for href, item, etag in items} == info - @pytest.mark.asyncio - def test_repr(self, s, get_storage_args): # XXX: unused param + def test_repr(self, s): assert self.storage_class.__name__ in repr(s) assert s.instance_name is None