From 533bc9ad422874acee7cb961f99a67806b436a74 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Wed, 23 Aug 2000 16:51:56 +0000 Subject: [PATCH] updated to correct failing test cases --- Lib/test/test_posixpath.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py index cdb158f311a..27bee619ea1 100644 --- a/Lib/test/test_posixpath.py +++ b/Lib/test/test_posixpath.py @@ -29,9 +29,9 @@ def tester(fn, wantResult): 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")