From 36526bf3d95763afa6d4efe402b8840b1532d637 Mon Sep 17 00:00:00 2001 From: Michael Foord Date: Sat, 4 Dec 2010 01:43:59 +0000 Subject: [PATCH] Correct comment in unittest test --- Lib/unittest/test/test_program.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/unittest/test/test_program.py b/Lib/unittest/test/test_program.py index deddd8c5313..ec805cc88a3 100644 --- a/Lib/unittest/test/test_program.py +++ b/Lib/unittest/test/test_program.py @@ -336,7 +336,7 @@ class TestCommandLineArgs(unittest.TestCase): def testParseArgsAbsolutePathsThatCannotBeConverted(self): program = self.program - # will this test work on Windows? (is '/...' considered absolute?) + # even on Windows '/...' is considered absolute by os.path.abspath argv = ['progname', '/foo/bar/baz.py', '/green/red.py'] self._patch_isfile(argv)