]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
fuse: runtests: Fix typo in summary reporting.
authornejucomo <nejucomo@gmail.com>
Sat, 7 Jun 2008 07:05:07 +0000 (00:05 -0700)
committernejucomo <nejucomo@gmail.com>
Sat, 7 Jun 2008 07:05:07 +0000 (00:05 -0700)
contrib/fuse/runtests.py

index 494a31f294e86b94606bf134179cc7b01931d273..419a147001f03336e90cf9cef37289beb7609b66 100644 (file)
@@ -102,9 +102,9 @@ class SystemTest (object):
         try:
             results = self.init_cli_layer()
             print '\n*** System Tests complete:'
-            for implpath, failures, total in reuslts:
-                print 'Implementation %r: %d failed out of %d.' % (implpath, failures, total)           
-        except self.SetupFailure, sfail:
+            for result in results:
+                print 'Implementation %s: %d failed out of %d.' % result           
+        except SetupFailure, sfail:
             print
             print sfail
             print '\n*** System Tests were not successfully completed.'