test/common_util.py: fix a typo. refs #1472

This commit is contained in:
david-sarah 2011-08-09 21:42:35 -07:00
parent 0104dbab92
commit 2deba3319c
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class NonASCIIPathMixin:
finally: finally:
log.err("We were unable to delete a non-ASCII directory %r created by the test. " log.err("We were unable to delete a non-ASCII directory %r created by the test. "
"This is liable to cause failures on future builds." % (dirpath,)) "This is liable to cause failures on future builds." % (dirpath,))
self.addCleanup(self._cleanup_nonascii, dirpath) self.addCleanup(self._cleanup, dirpath)
os.mkdir(dirpath) os.mkdir(dirpath)
def unicode_or_fallback(self, unicode_name, fallback_name): def unicode_or_fallback(self, unicode_name, fallback_name):