updated to correct failing test cases

This commit is contained in:
Skip Montanaro 2000-08-23 16:51:56 +00:00
parent abca14d8e2
commit 533bc9ad42
1 changed files with 2 additions and 2 deletions

View File

@ -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")