diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2016-09-19 19:43:58 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-09-19 23:23:25 +0200 |
commit | e9ab3aef3873b15ac10e049ebdc722e21a433384 (patch) | |
tree | 4e2ede73e6c8f4f0360143a488d575d4f1f6716b /dev-python/redis-py | |
parent | dev-python/pyzmq: remove unused patch (diff) | |
download | gentoo-e9ab3aef3873b15ac10e049ebdc722e21a433384.tar.gz gentoo-e9ab3aef3873b15ac10e049ebdc722e21a433384.tar.bz2 gentoo-e9ab3aef3873b15ac10e049ebdc722e21a433384.zip |
dev-python/redis-py: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/2362
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python/redis-py')
-rw-r--r-- | dev-python/redis-py/files/redis-py-2.10.5-test-backport.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/dev-python/redis-py/files/redis-py-2.10.5-test-backport.patch b/dev-python/redis-py/files/redis-py-2.10.5-test-backport.patch deleted file mode 100644 index 74d2d14134d5..000000000000 --- a/dev-python/redis-py/files/redis-py-2.10.5-test-backport.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 550eee8106ca5984f104b3a2a79299d9ae0821af Mon Sep 17 00:00:00 2001 -From: Chris Lamb <chris@chris-lamb.co.uk> -Date: Tue, 18 Aug 2015 13:28:40 +0200 -Subject: [PATCH] Fix tests under Redis 3.x; we can be of an "embedded string" - format now. - -Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk> ---- - tests/test_commands.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/tests/test_commands.py b/tests/test_commands.py -index 2e104ed..c0e56b0 100644 ---- a/tests/test_commands.py -+++ b/tests/test_commands.py -@@ -112,7 +112,7 @@ def test_object(self, r): - r['a'] = 'foo' - assert isinstance(r.object('refcount', 'a'), int) - assert isinstance(r.object('idletime', 'a'), int) -- assert r.object('encoding', 'a') == b('raw') -+ assert r.object('encoding', 'a') in (b('raw'), b('embstr')) - assert r.object('idletime', 'invalid-key') is None - - def test_ping(self, r): |