diff options
| author | Guido van Rossum <guido@python.org> | 2007-04-13 19:02:54 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2007-04-13 19:02:54 +0000 |
| commit | 6ef6306dd62aa092539298ed69c7c6ffff568e2d (patch) | |
| tree | 820982404ec711cba0b2c8efcdf2933e43907ef1 | |
| parent | 13633bb8c5bd2dbd2b9955539495ac6fb632776c (diff) | |
| download | cpython-git-6ef6306dd62aa092539298ed69c7c6ffff568e2d.tar.gz | |
Oops, don't test for a name attribute here. That's a higher-level feature.
| -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 bb98190af7..6a78154335 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': |
