From bb482c139df2e8a61fde33427b6c5c85fdc20a08 Mon Sep 17 00:00:00 2001 From: Adam Cmiel Date: Wed, 29 Sep 2021 11:08:17 +0200 Subject: [PATCH] Fix E127 continuation line over-indented Signed-off-by: Adam Cmiel --- tests/test_core.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_core.py b/tests/test_core.py index dc8483f8..4fb19c3b 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -406,8 +406,9 @@ def test_get_multiple_build_config_by_labels(self, openshift): # noqa:F811 "Build config not found for labels"), ([], None, "Build config not found for labels"), ([{"spam": "maps", "maps": {"spam": "value-3"}}, - {"spam": "maps", "maps": {"spam": "value-3"}}], None, - "More than one build config found for labels"), + {"spam": "maps", "maps": {"spam": "value-3"}}], + None, + "More than one build config found for labels"), ]) def test_get_build_config_by_labels_filtered_fail(self, openshift, items, filter_value, error):