[GRASS-SVN] r61413 - grass/trunk/lib/python/gunittest
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Jul 25 15:10:53 PDT 2014
Author: wenzeslaus
Date: 2014-07-25 15:10:53 -0700 (Fri, 25 Jul 2014)
New Revision: 61413
Modified:
grass/trunk/lib/python/gunittest/runner.py
Log:
gunittest: call the right method in multi reporter (was breaking test_geometry test in pygrass)
Modified: grass/trunk/lib/python/gunittest/runner.py
===================================================================
--- grass/trunk/lib/python/gunittest/runner.py 2014-07-25 21:59:43 UTC (rev 61412)
+++ grass/trunk/lib/python/gunittest/runner.py 2014-07-25 22:10:53 UTC (rev 61413)
@@ -366,7 +366,7 @@
super(MultiTestResult, self).addSkip(test, reason)
for result in self._results:
try:
- result.addSuccess(test, reason)
+ result.addSkip(test, reason)
except AttributeError:
if self._forgiving:
pass
More information about the grass-commit
mailing list