fuse: runtests: Fix typo in summary reporting.

This commit is contained in:
nejucomo 2008-06-07 00:05:07 -07:00
parent 0a94ac5732
commit 15fdb572b8

View 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.'