diff options
author | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-12-04 01:43:59 (GMT) |
---|---|---|
committer | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-12-04 01:43:59 (GMT) |
commit | 36526bf3d95763afa6d4efe402b8840b1532d637 (patch) | |
tree | 1a477b3edee25f90be37d56e5a3f1d808f160768 /Lib/unittest | |
parent | 37d120aeb471b3fba7e16550cea5d79ecb901561 (diff) | |
download | cpython-36526bf3d95763afa6d4efe402b8840b1532d637.zip cpython-36526bf3d95763afa6d4efe402b8840b1532d637.tar.gz cpython-36526bf3d95763afa6d4efe402b8840b1532d637.tar.bz2 |
Correct comment in unittest test
Diffstat (limited to 'Lib/unittest')
-rw-r--r-- | Lib/unittest/test/test_program.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/test/test_program.py b/Lib/unittest/test/test_program.py index deddd8c..ec805cc 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) |