From: Victor Stinner Date: Wed, 29 Jun 2011 11:23:49 +0000 (+0200) Subject: Issue #12400: oops, remove debug code... X-Git-Tag: v3.3.0a1~2018 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=565dbadc2297f7345ed14653ae338609b0fa4388;p=thirdparty%2FPython%2Fcpython.git Issue #12400: oops, remove debug code... --- diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index e075a6b3fc36..13dc337e3e5b 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -40,7 +40,6 @@ class FileTests(unittest.TestCase): tearDown = setUp def test_access(self): - self.assertEqual(1,2) f = os.open(support.TESTFN, os.O_CREAT|os.O_RDWR) os.close(f) self.assertTrue(os.access(support.TESTFN, os.W_OK))