diff options
author | Andy McCurdy <andy@andymccurdy.com> | 2019-05-28 15:42:47 -0700 |
---|---|---|
committer | Andy McCurdy <andy@andymccurdy.com> | 2019-05-28 15:42:47 -0700 |
commit | 0f26aad99f55d2ead9936ac57a97693c0b501fcf (patch) | |
tree | 9a574385168b33000c72b29618fd97a02ecf5f66 /tests/test_encoding.py | |
parent | b9f49c38f11965727d32f41e4a5b802f72fb60f6 (diff) | |
download | redis-py-remove_token.tar.gz |
remove Token class in favor of bytestringremove_token
The Token class was needed when supporting Python 2.6. Now that we've
dropped support for 2.6, we don't need it anymore.
Fixes #1066
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 283fc6e..18219a6 100644 --- a/tests/test_encoding.py +++ b/tests/test_encoding.py @@ -25,7 +25,7 @@ class TestEncoding(object): assert r.lrange('a', 0, -1) == result -class TestCommandsAndTokensArentEncoded(object): +class TestCommandsAreNotEncoded(object): @pytest.fixture() def r(self, request): return _get_client(redis.Redis, request=request, encoding='utf-16') |