From cdba4ff001f96e3deae8ac94969f11dde5253d94 Mon Sep 17 00:00:00 2001 From: Chayim Date: Wed, 7 Sep 2022 13:16:28 +0300 Subject: fixing async test for module list (#2367) --- tests/test_asyncio/test_commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_asyncio/test_commands.py b/tests/test_asyncio/test_commands.py index 422328a..1242e04 100644 --- a/tests/test_asyncio/test_commands.py +++ b/tests/test_asyncio/test_commands.py @@ -2986,7 +2986,8 @@ class TestRedisCommands: @pytest.mark.onlynoncluster async def test_module_list(self, r: redis.Redis): assert isinstance(await r.module_list(), list) - assert not await r.module_list() + for x in await r.module_list(): + assert isinstance(x, dict) @pytest.mark.onlynoncluster -- cgit v1.2.1