Fix test on Python 3: vault code expects bytes
(Different test than the last commit.)pull/4420/head
parent
f58f0c62e1
commit
a1d95536f9
|
@ -97,7 +97,7 @@ class TestVaultLib(unittest.TestCase):
|
||||||
lines = rdata.split(b'\n')
|
lines = rdata.split(b'\n')
|
||||||
assert lines[0] == b"ansible"
|
assert lines[0] == b"ansible"
|
||||||
assert v.cipher_name == 'TEST', "cipher name was not set"
|
assert v.cipher_name == 'TEST', "cipher name was not set"
|
||||||
assert v.b_version == "9.9"
|
assert v.b_version == b"9.9"
|
||||||
|
|
||||||
def test_encrypt_decrypt_aes(self):
|
def test_encrypt_decrypt_aes(self):
|
||||||
if not HAS_AES or not HAS_COUNTER or not HAS_PBKDF2:
|
if not HAS_AES or not HAS_COUNTER or not HAS_PBKDF2:
|
||||||
|
|
Loading…
Reference in New Issue