From: nejucomo Date: Sat, 7 Jun 2008 07:05:07 +0000 (-0700) Subject: fuse: runtests: Fix typo in summary reporting. X-Git-Tag: allmydata-tahoe-1.1.0~36 X-Git-Url: https://git.rkrishnan.org/specifications/banana.xhtml?a=commitdiff_plain;h=15fdb572b8e4733eb517f22bbdc8c3e4a0427b9c;p=tahoe-lafs%2Ftahoe-lafs.git fuse: runtests: Fix typo in summary reporting. --- diff --git a/contrib/fuse/runtests.py b/contrib/fuse/runtests.py index 494a31f2..419a1470 100644 --- a/contrib/fuse/runtests.py +++ b/contrib/fuse/runtests.py @@ -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.'