From caf45effefc04eaddeb20f9a852d95665c271f0f Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Thu, 29 Jan 2015 17:47:31 +0000 Subject: [PATCH] Fix a shallow test error. Signed-off-by: Daira Hopwood --- src/allmydata/test/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"]) -- 2.45.2