Skip to content

Commit 127f94d

Browse files
author
Ivan Zhakov
committed
Fix minor issue in output of test runner.
* build/run_tests.py (TestHarness.run): Add missing space to 'There were some XML validation errors, checking <FILE>' message. git-svn-id: https://svn.apache.org/repos/asf/subversion/trunk@1936114 13f79535-47bb-0310-9956-ffa450edef68
1 parent 62e955c commit 127f94d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build/run_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ def printxfail(x):
670670

671671
xml_error_list = [x for x in log_lines if x[:8] == 'E: XML: ']
672672
if xml_error_list:
673-
print('There were some XML validation errors, checking' + self.logfile)
673+
print('There were some XML validation errors, checking ' + self.logfile)
674674
for x in sorted(set(xml_error_list)):
675675
sys.stdout.write(x[3:])
676676

0 commit comments

Comments
 (0)