diff options
author | andy <andy@whiskeymedia.com> | 2013-06-07 21:34:16 -0700 |
---|---|---|
committer | andy <andy@whiskeymedia.com> | 2013-06-07 21:34:16 -0700 |
commit | 7c69f35a83b30cc394bc019b71838dc909c39635 (patch) | |
tree | 10fdf0f6eb76d142d2463149b61768af39552b32 /tests/test_encoding.py | |
parent | 83be4e17e4c01028e79813b1f4ee1c91833d9a2a (diff) | |
download | redis-py-7c69f35a83b30cc394bc019b71838dc909c39635.tar.gz |
encoding fix
Diffstat (limited to 'tests/test_encoding.py')
-rw-r--r-- | tests/test_encoding.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_encoding.py b/tests/test_encoding.py index 5a02736..9764f16 100644 --- a/tests/test_encoding.py +++ b/tests/test_encoding.py @@ -6,7 +6,7 @@ from redis.utils import HIREDIS_AVAILABLE from .conftest import r as _redis_client -@pytest.fixture(scope="module") +@pytest.fixture() def r(request): return _redis_client(request=request, decode_responses=True) |