diff options
author | Guido van Rossum <guido@python.org> | 2007-04-13 19:02:54 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-04-13 19:02:54 (GMT) |
commit | 6ef6306dd62aa092539298ed69c7c6ffff568e2d (patch) | |
tree | 820982404ec711cba0b2c8efcdf2933e43907ef1 /Lib | |
parent | 13633bb8c5bd2dbd2b9955539495ac6fb632776c (diff) | |
download | cpython-6ef6306dd62aa092539298ed69c7c6ffff568e2d.zip cpython-6ef6306dd62aa092539298ed69c7c6ffff568e2d.tar.gz cpython-6ef6306dd62aa092539298ed69c7c6ffff568e2d.tar.bz2 |
Oops, don't test for a name attribute here. That's a higher-level feature.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_fileio.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_fileio.py b/Lib/test/test_fileio.py index bb98190..6a78154 100644 --- a/Lib/test/test_fileio.py +++ b/Lib/test/test_fileio.py @@ -51,7 +51,6 @@ class AutoFileTests(unittest.TestCase): self.assertEquals(f.mode, "w") self.assertEquals(f.closed, False) - self.assertEquals(f.name, TESTFN) # verify the attributes are readonly for attr in 'mode', 'closed': |