From: Eric Smith Date: Wed, 27 Jan 2010 01:38:34 +0000 (+0000) Subject: Fixed test_support -> support. X-Git-Tag: v3.2a1~1801 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d8aef76f6e843368b05d424ad1cc64299288cbb5;p=thirdparty%2FPython%2Fcpython.git Fixed test_support -> support. --- diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index e5d5a7312605..18f2a336c8ea 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)