fix cipher name in test

This commit is contained in:
clowwindy 2014-11-05 18:42:01 +08:00
parent f9ba6f7390
commit 5209860db1
1 changed files with 1 additions and 1 deletions

View File

@ -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)