diff options
Diffstat (limited to 'tests/test_asyncio/test_bloom.py')
-rw-r--r-- | tests/test_asyncio/test_bloom.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/test_asyncio/test_bloom.py b/tests/test_asyncio/test_bloom.py index 2bf4e03..2c3617f 100644 --- a/tests/test_asyncio/test_bloom.py +++ b/tests/test_asyncio/test_bloom.py @@ -1,14 +1,9 @@ -import sys - import pytest import redis.asyncio as redis from redis.exceptions import ModuleError, RedisError from redis.utils import HIREDIS_AVAILABLE -if sys.version_info[0:2] == (3, 6): - pytestmark = pytest.mark.asyncio - def intlist(obj): return [int(v) for v in obj] |