Skip to content

Commit 44d1458

Browse files
committed
fixed xml encoding on junit results
1 parent 1d9a41c commit 44d1458

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generate_xml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ def start_system_test_file(self):
732732
self.failed_count += 1
733733
api.close()
734734

735-
data = "<?xml version=\"1.0\" encoding=\{}\"?>\n".format(self.encFmt)
735+
data = "<?xml version=\"1.0\" encoding=\"{}\"?>\n".format(self.encFmt)
736736
data += "<testsuites>\n"
737737
data += " <testsuite errors=\"{}\" tests=\"{}\" failures=\"{}\" name=\"{}\" id=\"1\">\n".format(errors, success+failed+errors, failed, escape(self.env, quote=False))
738738

0 commit comments

Comments
 (0)