toxes tests fix
This commit is contained in:
parent
3511031aff
commit
704344fae2
1 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
from toxygen.profile import *
|
from toxygen.profile import *
|
||||||
from toxygen.tox_dns import tox_dns
|
from toxygen.tox_dns import tox_dns
|
||||||
import toxygen.toxencryptsave as encr
|
import toxygen.toxes as encr
|
||||||
import toxygen.messages as m
|
import toxygen.messages as m
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
@ -53,8 +53,8 @@ class TestEncryption:
|
||||||
def test_encr_decr(self):
|
def test_encr_decr(self):
|
||||||
tox = tox_factory()
|
tox = tox_factory()
|
||||||
data = tox.get_savedata()
|
data = tox.get_savedata()
|
||||||
lib = encr.ToxEncryptSave()
|
lib = encr.ToxES()
|
||||||
for password in ('easypassword', 'njvnjfnvaGGV6', 'toxygen'):
|
for password in ('easypassword', 'njvnFjfn7vaGGV6', 'toxygen'):
|
||||||
lib.set_password(password)
|
lib.set_password(password)
|
||||||
copy_data = data[:]
|
copy_data = data[:]
|
||||||
new_data = lib.pass_encrypt(data)
|
new_data = lib.pass_encrypt(data)
|
||||||
|
|
Loading…
Reference in a new issue