]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Fix a shallow test error.
authorDaira Hopwood <daira@jacaranda.org>
Thu, 29 Jan 2015 17:47:31 +0000 (17:47 +0000)
committerDaira Hopwood <daira@jacaranda.org>
Thu, 29 Jan 2015 17:47:31 +0000 (17:47 +0000)
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
src/allmydata/test/test_cli.py

index fa6fe13d371d19005b7deac199cd75191f930f70..156df81d610dfe5a6bc437d33acf228fe535da70 100644 (file)
@@ -3894,7 +3894,7 @@ class Options(ReallyEqualMixin, unittest.TestCase):
         self.failUnlessReallyEqual(o["basedir"], fileutil.abspath_expanduser_unicode(u"there"))
 
         o = self.parse(["start", "here", "--nodaemon"])
-        self.failUnlessEqual(o["basedir"], os.path.abspath("here"))
+        self.failUnlessEqual(o["basedir"], fileutil.abspath_expanduser_unicode(u"here"))
 
         self.failUnlessRaises(usage.UsageError, self.parse,
                               ["--basedir", "there", "start"])