diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-06-29 11:23:49 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-06-29 11:23:49 (GMT) |
commit | 565dbadc2297f7345ed14653ae338609b0fa4388 (patch) | |
tree | af5b7d79f0cf9da9ff5868caa2423262f8eb6d0c /Lib/test/test_os.py | |
parent | e2185d714bf541ab37e7ddec5fb2f452fdeb26be (diff) | |
download | cpython-565dbadc2297f7345ed14653ae338609b0fa4388.zip cpython-565dbadc2297f7345ed14653ae338609b0fa4388.tar.gz cpython-565dbadc2297f7345ed14653ae338609b0fa4388.tar.bz2 |
Issue #12400: oops, remove debug code...
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r-- | Lib/test/test_os.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index e075a6b..13dc337 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)) |