diff options
author | Skip Montanaro <skip@pobox.com> | 2000-08-23 16:51:56 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2000-08-23 16:51:56 (GMT) |
commit | 533bc9ad422874acee7cb961f99a67806b436a74 (patch) | |
tree | e8b255d531939da00b28f94b1cf6ace8f0c91a3a /Lib | |
parent | abca14d8e27bd2ed831dd92ad57998034a2c1efd (diff) | |
download | cpython-533bc9ad422874acee7cb961f99a67806b436a74.zip cpython-533bc9ad422874acee7cb961f99a67806b436a74.tar.gz cpython-533bc9ad422874acee7cb961f99a67806b436a74.tar.bz2 |
updated to correct failing test cases
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_posixpath.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py index cdb158f..27bee61 100644 --- a/Lib/test/test_posixpath.py +++ b/Lib/test/test_posixpath.py @@ -29,9 +29,9 @@ tester('posixpath.isabs("/foo/bar")', 1) tester('posixpath.isabs("foo/bar")', 0) tester('posixpath.commonprefix(["/home/swenson/spam", "/home/swen/spam"])', - "/home") -tester('posixpath.commonprefix(["/home/swen/spam", "/home/swen/eggs"])', "/home/swen") +tester('posixpath.commonprefix(["/home/swen/spam", "/home/swen/eggs"])', + "/home/swen/") tester('posixpath.commonprefix(["/home/swen/spam", "/home/swen/spam"])', "/home/swen/spam") |