summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_fileio.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-04-13 19:02:54 (GMT)
committerGuido van Rossum <guido@python.org>2007-04-13 19:02:54 (GMT)
commit6ef6306dd62aa092539298ed69c7c6ffff568e2d (patch)
tree820982404ec711cba0b2c8efcdf2933e43907ef1 /Lib/test/test_fileio.py
parent13633bb8c5bd2dbd2b9955539495ac6fb632776c (diff)
downloadcpython-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/test/test_fileio.py')
-rw-r--r--Lib/test/test_fileio.py1
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':