diff options
author | Simo Sorce <simo@redhat.com> | 2015-04-07 18:48:22 -0400 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2015-04-07 18:48:32 -0400 |
commit | 4ee02b9496ff7a89d762b3aa1659629d2ac504af (patch) | |
tree | 98efef47805bc579d693042accfc8d744b867847 /custodia/secrets.py | |
parent | 00cceea25687bc91f605bc6bbdd834122dd0af45 (diff) | |
download | custodia-4ee02b9496ff7a89d762b3aa1659629d2ac504af.tar.gz custodia-4ee02b9496ff7a89d762b3aa1659629d2ac504af.tar.xz custodia-4ee02b9496ff7a89d762b3aa1659629d2ac504af.zip |
Mute lint
Diffstat (limited to 'custodia/secrets.py')
-rw-r--r-- | custodia/secrets.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/custodia/secrets.py b/custodia/secrets.py index 7661277..ceff8de 100644 --- a/custodia/secrets.py +++ b/custodia/secrets.py @@ -274,7 +274,7 @@ class SecretsTests(unittest.TestCase): rep = {} self.secrets.GET(req, rep) self.assertEqual(json.loads(rep['output']), - json.loads('{"test/key1":'\ + json.loads('{"test/key1":' '{"type":"simple","value":"1234"}}')) def test_3_LISTKeys_2(self): @@ -284,7 +284,7 @@ class SecretsTests(unittest.TestCase): rep = {} self.secrets.GET(req, rep) self.assertEqual(json.loads(rep['output']), - json.loads('{"test/key1":'\ + json.loads('{"test/key1":' '{"type":"simple","value":"1234"}}')) def test_4_PUTKey_errors_400_1(self): |