diff options
author | Eric Smith <eric@trueblade.com> | 2010-01-27 01:38:34 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2010-01-27 01:38:34 (GMT) |
commit | d8aef76f6e843368b05d424ad1cc64299288cbb5 (patch) | |
tree | c80316777000b6457d050644bb6cebd2fa066c4d /Lib/test | |
parent | 05f337440298c38a20f79d6a25de7e473272ea47 (diff) | |
download | cpython-d8aef76f6e843368b05d424ad1cc64299288cbb5.zip cpython-d8aef76f6e843368b05d424ad1cc64299288cbb5.tar.gz cpython-d8aef76f6e843368b05d424ad1cc64299288cbb5.tar.bz2 |
Fixed test_support -> support.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_sys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index e5d5a73..18f2a33 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -227,7 +227,7 @@ class SysModuleTest(unittest.TestCase): def test_getwindowsversion(self): # Raise SkipTest if sys doesn't have getwindowsversion attribute - test.test_support.get_attribute(sys, "getwindowsversion") + test.support.get_attribute(sys, "getwindowsversion") v = sys.getwindowsversion() self.assertEqual(len(v), 5) self.assertIsInstance(v[0], int) |