From: Daira Hopwood Date: Thu, 29 Jan 2015 17:47:31 +0000 (+0000) Subject: Fix a shallow test error. X-Git-Url: https://git.rkrishnan.org/uri?a=commitdiff_plain;h=caf45effefc04eaddeb20f9a852d95665c271f0f;p=tahoe-lafs%2Ftahoe-lafs.git Fix a shallow test error. Signed-off-by: Daira Hopwood --- diff --git a/src/allmydata/test/test_cli.py b/src/allmydata/test/test_cli.py index fa6fe13d..156df81d 100644 --- a/src/allmydata/test/test_cli.py +++ b/src/allmydata/test/test_cli.py @@ -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"])