Oops, don't test for a name attribute here. That's a higher-level feature.

This commit is contained in:
Guido van Rossum 2007-04-13 19:02:54 +00:00
parent 13633bb8c5
commit 6ef6306dd6

View file

@ -51,7 +51,6 @@ def testAttributes(self):
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':