Revision: 2058
Author: jprantan
Date: Fri Jul 24 05:04:14 2009
Log: Fixed problem that suite names were not shown correctly when results
are combined. Issue 335.
http://code.google.com/p/robotframework/source/detail?r=2058
Modified:
/trunk/src/robot/output/readers.py
=======================================
--- /trunk/src/robot/output/readers.py Sun Apr 19 13:26:54 2009
+++ /trunk/src/robot/output/readers.py Fri Jul 24 05:04:14 2009
@@ -229,6 +229,7 @@
def add_suite(self, suite):
self.suites.append(suite)
+ suite.parent = self
self._add_suite_to_stats(suite)
self.status = self.critical_stats.failed == 0 and 'PASS' or 'FAIL'
if self.starttime == 'N/A' or self.endtime == 'N/A':