diff --git a/Lib/test/test_platform.py b/Lib/test/test_platform.py index bc02d1e66cf..8ef34ad6174 100644 --- a/Lib/test/test_platform.py +++ b/Lib/test/test_platform.py @@ -65,7 +65,7 @@ class PlatformTest(unittest.TestCase): def test_mac_ver(self): res = platform.mac_ver() - if os.uname()[0] == 'Darwin': + if platform.uname()[0] == 'Darwin': # We're on a MacOSX system, check that # the right version information is returned fd = os.popen('sw_vers', 'r')