From 4ee02b9496ff7a89d762b3aa1659629d2ac504af Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 7 Apr 2015 18:48:22 -0400 Subject: Mute lint --- custodia/secrets.py | 4 ++-- 1 file 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): -- cgit