File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -68,8 +68,8 @@ def build_xml_doc(self):
68
68
test_suite_attributes ['name' ] = str (self .name )
69
69
test_suite_attributes ['failures' ] = str (len ([c for c in self .test_cases if c .is_failure ()]))
70
70
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 ))
73
73
test_suite_attributes ['tests' ] = str (len (self .test_cases ))
74
74
75
75
if self .hostname :
You can’t perform that action at this time.
0 commit comments