You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by bo...@apache.org on 2010/07/11 11:31:29 UTC

svn commit: r963023 - /gump/trunk/python/gump/test/pyunit.py

Author: bodewig
Date: Sun Jul 11 09:31:28 2010
New Revision: 963023

URL: http://svn.apache.org/viewvc?rev=963023&view=rev
Log:
I think this is what Adam actually wanted to do

Modified:
    gump/trunk/python/gump/test/pyunit.py

Modified: gump/trunk/python/gump/test/pyunit.py
URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/test/pyunit.py?rev=963023&r1=963022&r2=963023&view=diff
==============================================================================
--- gump/trunk/python/gump/test/pyunit.py (original)
+++ gump/trunk/python/gump/test/pyunit.py Sun Jul 11 09:31:28 2010
@@ -164,7 +164,7 @@ class UnitTestSuite(Testable):
 
         # Calculate
         for suite in self.depends:
-            for dependSuite in self.fullDepends(visited):
+            for dependSuite in suite.getFullDepends(visited):
                 if not dependSuite in self.fullDepends:
                     self.fullDepends.append(dependSuite)