mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-02-21 10:01:54 +00:00
test_system: correct a failure in _test_runner caused by Unicode basedir patch on non-Unicode platforms.
This commit is contained in:
parent
f036dfaa4b
commit
2b33704d61
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user