fuse_a: Fix the expected path in runtests.py.

This commit is contained in:
nejucomo 2008-05-31 00:42:02 -07:00
parent e0fd3d8fe1
commit 2102358550

View File

@ -97,7 +97,7 @@ class SystemTest (object):
'''This layer finds the appropriate tahoe executable.'''
runtestpath = os.path.abspath(sys.argv[0])
path = runtestpath
for expectedname in ('runtests.py', 'fuse', 'contrib'):
for expectedname in ('runtests.py', 'fuse_a', 'contrib'):
path, name = os.path.split(path)
if name != expectedname: