mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-02 15:21:25 -07:00
Fix invalid string escape sequences.
This commit is contained in:
parent
f9cd50411f
commit
e45c763b64
48 changed files with 77 additions and 77 deletions
|
@ -285,7 +285,7 @@ class TestScriptVaultSecret(unittest.TestCase):
|
|||
with patch.object(secret, 'loader') as mock_loader:
|
||||
mock_loader.is_executable = MagicMock(return_value=True)
|
||||
self.assertRaisesRegexp(errors.AnsibleError,
|
||||
'Vault password script.*returned non-zero \(%s\): %s' % (rc, stderr),
|
||||
r'Vault password script.*returned non-zero \(%s\): %s' % (rc, stderr),
|
||||
secret.load)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue