From 5209860db106b8956a67fb029b2e37ad85c663c6 Mon Sep 17 00:00:00 2001 From: clowwindy Date: Wed, 5 Nov 2014 18:42:01 +0800 Subject: [PATCH] fix cipher name in test --- shadowsocks/crypto/table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shadowsocks/crypto/table.py b/shadowsocks/crypto/table.py index 6f16d26..08c1205 100644 --- a/shadowsocks/crypto/table.py +++ b/shadowsocks/crypto/table.py @@ -170,7 +170,7 @@ def test_encryption(): from shadowsocks.crypto import util cipher = TableCipher(b'table', b'test', b'', 1) - decipher = TableCipher(b'rc4-md5', b'test', b'', 0) + decipher = TableCipher(b'table', b'test', b'', 0) util.run_cipher(cipher, decipher)