test_cli: probably remove the unix-ism that broke tests on windows
This commit is contained in:
parent
d8c536847b
commit
74843948d1
|
@ -3773,7 +3773,8 @@ class Options(unittest.TestCase):
|
|||
# option after, or a basedir argument after, but none in the wrong
|
||||
# place, and not more than one of the three.
|
||||
o = self.parse(["start"])
|
||||
self.failUnlessEqual(o["basedir"], os.path.expanduser("~/.tahoe"))
|
||||
self.failUnlessEqual(o["basedir"], os.path.join(os.path.expanduser("~"),
|
||||
".tahoe"))
|
||||
o = self.parse(["start", "here"])
|
||||
self.failUnlessEqual(o["basedir"], os.path.abspath("here"))
|
||||
o = self.parse(["start", "--basedir", "there"])
|
||||
|
|
Loading…
Reference in New Issue