Passwords are decoded to unicode

This commit is contained in:
Daniel A. Wozniak 2019-01-05 13:40:16 -07:00
parent 290f461963
commit a84ba300cb
No known key found for this signature in database
GPG key ID: 166B9D2C06C82D61

View file

@ -85,4 +85,4 @@ class EC2TestCase(TestCase, LoaderModuleMockMixin):
name='i-abcddef', kwargs={'key_file': self.key_file}, call='action'
)
assert ret['passwordData'] == PASS_DATA
assert ret['password'] == b'testp4ss!'
assert ret['password'] == 'testp4ss!'