From 0a7a87b8255b88d72f7d8296b5a7b43ece10c382 Mon Sep 17 00:00:00 2001 From: Matthias Bernt Date: Mon, 1 Jul 2024 18:12:08 +0200 Subject: [PATCH] fix lint --- tests/test_cmd_test_reports.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_cmd_test_reports.py b/tests/test_cmd_test_reports.py index cfe69402b..30c013f1e 100644 --- a/tests/test_cmd_test_reports.py +++ b/tests/test_cmd_test_reports.py @@ -30,7 +30,9 @@ def test_markdown(self): # Run minimal version minimal_results_path = os.path.join(f, "minimal_markdown_results") - self._check_exit_code(["test_reports", "--test_output_markdown_minimal", minimal_results_path, json_path], exit_code=0) + self._check_exit_code( + ["test_reports", "--test_output_markdown_minimal", minimal_results_path, json_path], exit_code=0 + ) assert os.path.exists(minimal_results_path) # Make sure minimal markdown is compacted assert os.path.getsize(minimal_results_path) < os.path.getsize(results_path)