From 2b33704d613da8d11179012308350f4f7cb57032 Mon Sep 17 00:00:00 2001 From: david-sarah Date: Fri, 23 Jul 2010 20:21:23 -0700 Subject: [PATCH] test_system: correct a failure in _test_runner caused by Unicode basedir patch on non-Unicode platforms. --- src/allmydata/test/test_system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/test/test_system.py b/src/allmydata/test/test_system.py index 93a71a0a..2d6feacf 100644 --- a/src/allmydata/test/test_system.py +++ b/src/allmydata/test/test_system.py @@ -1270,7 +1270,7 @@ class SystemTest(SystemTestMixin, unittest.TestCase): # exercise some of the diagnostic tools in runner.py # find a share - for (dirpath, dirnames, filenames) in os.walk(self.basedir): + for (dirpath, dirnames, filenames) in os.walk(unicode(self.basedir)): if "storage" not in dirpath: continue if not filenames: -- 2.37.2