From: Skip Montanaro Date: Wed, 23 Aug 2000 16:51:56 +0000 (+0000) Subject: updated to correct failing test cases X-Git-Tag: v2.0b1~300 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=533bc9ad422874acee7cb961f99a67806b436a74;p=python updated to correct failing test cases --- diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py index cdb158f311..27bee619ea 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")