Builder::TestReport - fixed addSkipped:
authorJan Vrany <jan.vrany@fit.cvut.cz>
Tue, 16 Sep 2014 20:47:48 +0200
changeset 249 50d2712af1a9
parent 248 82f1ff8c96a6
child 250 4392c84aaf1c
Builder::TestReport - fixed addSkipped:
reports/Builder__TestReport.st
--- a/reports/Builder__TestReport.st	Tue Sep 16 19:57:06 2014 +0200
+++ b/reports/Builder__TestReport.st	Tue Sep 16 20:47:48 2014 +0200
@@ -340,7 +340,6 @@
 addSkipped: testcase
 
     outcome := self createOutcome.
-    outcome collectedOutput: collector contents. 
     outcome testCase: testcase.        
     outcome result: TestResult stateSkip.
     format writeTestCase: testcase outcome: outcome time: time exception: nil.
@@ -348,7 +347,7 @@
     nskipped := nskipped + 1.
 
     "Created: / 21-11-2012 / 15:35:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 16-09-2014 / 15:24:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 16-09-2014 / 19:47:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !TestReport::Result methodsFor:'initialization'!