From 38d1af7ede1acc072370a193e65cf9e4aec4bcc6 Mon Sep 17 00:00:00 2001 From: Zooko O'Whielacronx Date: Tue, 11 Dec 2007 20:03:44 -0700 Subject: [PATCH] fix unit test to pass forward-slashes to the CLI since it demands that the CLI emit forward-slashes --- src/allmydata/test/test_system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] -- 2.45.2