From: Zooko O'Whielacronx Date: Wed, 12 Dec 2007 03:03:44 +0000 (-0700) Subject: fix unit test to pass forward-slashes to the CLI since it demands that the CLI emit... X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=38d1af7ede1acc072370a193e65cf9e4aec4bcc6;p=tahoe-lafs%2Ftahoe-lafs.git fix unit test to pass forward-slashes to the CLI since it demands that the CLI emit forward-slashes --- diff --git a/src/allmydata/test/test_system.py b/src/allmydata/test/test_system.py index 048ab353..cae32008 100644 --- a/src/allmydata/test/test_system.py +++ b/src/allmydata/test/test_system.py @@ -1103,7 +1103,7 @@ class SystemTest(testutil.SignalMixin, unittest.TestCase): self.failUnlessEqual(err, "") d.addCallback(_check_get_to_stdout) - get_to_file_target = os.path.join(self.basedir, "get.downfile") + get_to_file_target = self.basedir + "/get.downfile" def _get_to_file(res): argv = ["get"] + nodeargs + ["test_put/upload.txt", get_to_file_target]