[GRASS-SVN] r61633 - grass/trunk/lib/python/gunittest

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Aug 14 08:33:23 PDT 2014


Author: wenzeslaus
Date: 2014-08-14 08:33:23 -0700 (Thu, 14 Aug 2014)
New Revision: 61633

Modified:
   grass/trunk/lib/python/gunittest/runner.py
Log:
gunittest: fix wrong variable name in r61631 (inconsistent names should be fixed in future)

Modified: grass/trunk/lib/python/gunittest/runner.py
===================================================================
--- grass/trunk/lib/python/gunittest/runner.py	2014-08-14 15:28:20 UTC (rev 61632)
+++ grass/trunk/lib/python/gunittest/runner.py	2014-08-14 15:33:23 UTC (rev 61633)
@@ -273,7 +273,7 @@
         # alternative is to behave as failed file, i.e. do not
         # write test details and just write status=failed
         if not run:
-            run = errors + failed + succeeded
+            run = errored + failed + succeeded
         infos.append("total=%d" % (run))
 
         infos.append("failures=%d" % failed)



More information about the grass-commit mailing list