From 15fdb572b8e4733eb517f22bbdc8c3e4a0427b9c Mon Sep 17 00:00:00 2001 From: nejucomo Date: Sat, 7 Jun 2008 00:05:07 -0700 Subject: [PATCH] fuse: runtests: Fix typo in summary reporting. --- contrib/fuse/runtests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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.' -- 2.45.2