From a11865b8c6dff87bc18b23cded2ea554dd190bb7 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Sat, 20 Feb 2010 09:47:55 +0000 Subject: Merged revisions 78249 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r78249 | ezio.melotti | 2010-02-20 11:40:07 +0200 (Sat, 20 Feb 2010) | 1 line Remove e assertIs definitions and use correct assert* methods. ........ --- Lib/test/test_genericpath.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'Lib/test/test_genericpath.py') diff --git a/Lib/test/test_genericpath.py b/Lib/test/test_genericpath.py index 3be9c8992b5..ec722f3c1e9 100644 --- a/Lib/test/test_genericpath.py +++ b/Lib/test/test_genericpath.py @@ -5,9 +5,6 @@ import genericpath class AllCommonTest(unittest.TestCase): - def assertIs(self, a, b): - self.assertTrue(a is b) - def test_commonprefix(self): self.assertEqual( genericpath.commonprefix([]), @@ -50,8 +47,8 @@ class AllCommonTest(unittest.TestCase): f.close() self.assertEqual(d, b"foobar") - self.assertTrue( - genericpath.getctime(support.TESTFN) <= + self.assertLessEqual( + genericpath.getctime(support.TESTFN), genericpath.getmtime(support.TESTFN) ) finally: -- cgit v1.2.3