diff options
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r-- | Lib/test/test_os.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index db8d99e..1e283cd 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -205,9 +205,9 @@ class StatAttributeTests(unittest.TestCase): except TypeError: pass -from test_userdict import TestMappingProtocol +from test import mapping_tests -class EnvironTests(TestMappingProtocol): +class EnvironTests(mapping_tests.BasicTestMappingProtocol): """check that os.environ object conform to mapping protocol""" _tested_class = None def _reference(self): |