Skip to content

Commit 3050872

Browse files
committed
Merge pull request kyrus#10 from msabramo/remove_tabs_and_extra_whitespace
Remove tabs and extra whitespace
2 parents eabda8c + 07cc236 commit 3050872

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

junit_xml/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ def build_xml_doc(self):
6868
test_suite_attributes['name'] = str(self.name)
6969
test_suite_attributes['failures'] = str(len([c for c in self.test_cases if c.is_failure()]))
7070
test_suite_attributes['errors'] = str(len([c for c in self.test_cases if c.is_error()]))
71-
test_suite_attributes['skipped'] = str(len([c for c in self.test_cases if c.is_skipped()]))
72-
test_suite_attributes['time'] = str(sum(c.elapsed_sec for c in self.test_cases if c.elapsed_sec))
71+
test_suite_attributes['skipped'] = str(len([c for c in self.test_cases if c.is_skipped()]))
72+
test_suite_attributes['time'] = str(sum(c.elapsed_sec for c in self.test_cases if c.elapsed_sec))
7373
test_suite_attributes['tests'] = str(len(self.test_cases))
7474

7575
if self.hostname:

0 commit comments

Comments
 (0)