diff options
Diffstat (limited to 'tests/test_asyncio/test_commands.py')
-rw-r--r-- | tests/test_asyncio/test_commands.py | 3 |
1 files changed, 2 insertions, 1 deletions
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 |