From 52b38ef8c6e0fce5aec8283ac81a9da9f55aa5e5 Mon Sep 17 00:00:00 2001 From: Daniel Miranda Date: Thu, 5 Jul 2018 18:27:29 -0300 Subject: [PATCH] lookups: file: fix linter warning in test --- stacker/tests/lookups/handlers/test_file.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stacker/tests/lookups/handlers/test_file.py b/stacker/tests/lookups/handlers/test_file.py index 2327936ce..c2eb93f97 100644 --- a/stacker/tests/lookups/handlers/test_file.py +++ b/stacker/tests/lookups/handlers/test_file.py @@ -68,7 +68,8 @@ def test_yaml_codec_raw(self): def test_yaml_codec_parameterized(self): processed = { - u'Test': Join(u'', [u'Test ', {u'Ref': u'Interpolation'}, u' Here']) + u'Test': Join(u'', [u'Test ', {u'Ref': u'Interpolation'}, + u' Here']) } structured = { u'Test': u'Test {{Interpolation}} Here'