From 4d1f557dbea19e28e7313776dbf5f0814f5d1d23 Mon Sep 17 00:00:00 2001 From: Matthias Bernt Date: Mon, 29 Nov 2021 18:11:18 +0100 Subject: [PATCH] fix rebase error --- lib/galaxy/tool_util/linters/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/galaxy/tool_util/linters/tests.py b/lib/galaxy/tool_util/linters/tests.py index 539746222d18..cbd4416aa8bd 100644 --- a/lib/galaxy/tool_util/linters/tests.py +++ b/lib/galaxy/tool_util/linters/tests.py @@ -83,7 +83,7 @@ def lint_tsts(tool_xml, lint_ctx): has_test = has_test or found_output_test if not has_test: - lint_ctx.warn("Test {test_idx}: No outputs or expectations defined for tests, this test is likely invalid.", line=test.sourceline, xpath=tool_xml.getpath(test)) + lint_ctx.warn(f"Test {test_idx}: No outputs or expectations defined for tests, this test is likely invalid.", line=test.sourceline, xpath=tool_xml.getpath(test)) else: num_valid_tests += 1