Fix typo in vault decrypt error message (#31335)

pull/31388/head
Michael Vermaes 7 years ago committed by ansibot
parent 336723d293
commit fad3a4dc83

@ -587,7 +587,7 @@ class VaultLib:
(vault_secret_id, filename, e))
continue
else:
msg = "Decryption failed (no vault secrets would found that could decrypt)"
msg = "Decryption failed (no vault secrets were found that could decrypt)"
if filename:
msg += " on %s" % filename
raise AnsibleVaultError(msg)

@ -201,7 +201,7 @@ class TestAnsibleLoaderVault(unittest.TestCase, YamlTestUtils):
self.vault.decrypt(ciphertext)
except Exception as e:
self.assertIsInstance(e, errors.AnsibleError)
self.assertEqual(e.message, 'Decryption failed (no vault secrets would found that could decrypt)')
self.assertEqual(e.message, 'Decryption failed (no vault secrets were found that could decrypt)')
def _encrypt_plaintext(self, plaintext):
# Construct a yaml repr of a vault by hand

Loading…
Cancel
Save