summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2000-08-23 16:51:56 (GMT)
committerSkip Montanaro <skip@pobox.com>2000-08-23 16:51:56 (GMT)
commit533bc9ad422874acee7cb961f99a67806b436a74 (patch)
treee8b255d531939da00b28f94b1cf6ace8f0c91a3a /Lib
parentabca14d8e27bd2ed831dd92ad57998034a2c1efd (diff)
downloadcpython-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.py4
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")