diff options
author | Walter Dörwald <walter@livinglogic.de> | 2004-06-02 18:42:25 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2004-06-02 18:42:25 (GMT) |
commit | 118f931d07de3987958eee51e97b3323c190dbfd (patch) | |
tree | a839d4dd7f23706722fc0026ec2ea1b4bdaf8314 /Lib/test/test_os.py | |
parent | b4541c2653ff3307325371e0c07266b4f988ce65 (diff) | |
download | cpython-118f931d07de3987958eee51e97b3323c190dbfd.zip cpython-118f931d07de3987958eee51e97b3323c190dbfd.tar.gz cpython-118f931d07de3987958eee51e97b3323c190dbfd.tar.bz2 |
Rename class attribute containing the class to be tested, so the name is the
same as for the string and sequence tests.
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r-- | Lib/test/test_os.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 1e283cd..4cdc29d 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -209,7 +209,7 @@ from test import mapping_tests class EnvironTests(mapping_tests.BasicTestMappingProtocol): """check that os.environ object conform to mapping protocol""" - _tested_class = None + type2test = None def _reference(self): return {"KEY1":"VALUE1", "KEY2":"VALUE2", "KEY3":"VALUE3"} def _empty_mapping(self): |