Skip to content

Commit a9dcbfe

Browse files
committed
Fix formatting
1 parent e19374f commit a9dcbfe

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

test/framework/run.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,13 @@
4646
import easybuild.tools.utilities
4747
from easybuild.tools.build_log import EasyBuildError, init_logging, stop_logging
4848
from easybuild.tools.filetools import adjust_permissions, read_file, write_file
49-
from easybuild.tools.run import get_output_from_process, run_cmd, run_cmd_qa, parse_log_for_error, check_log_for_errors
49+
from easybuild.tools.run import (
50+
check_log_for_errors,
51+
get_output_from_process,
52+
run_cmd,
53+
run_cmd_qa,
54+
parse_log_for_error,
55+
)
5056
from easybuild.tools.config import ERROR, IGNORE, WARN
5157

5258

@@ -538,7 +544,8 @@ def test_check_log_for_errors(self):
538544
"enabling -Werror",
539545
"the process crashed with 0"
540546
])
541-
expected_error_msg = r"Found 2 error\(s\) in command output \(output: error found\n\tthe process crashed with 0\)"
547+
expected_error_msg = r"Found 2 error\(s\) in command output "\
548+
r"\(output: error found\n\tthe process crashed with 0\)"
542549

543550
# String promoted to list
544551
self.assertErrorRegex(EasyBuildError, expected_error_msg, check_log_for_errors, input_text,

0 commit comments

Comments
 (0)