Undo inadvertant checkin.

This commit is contained in:
Brian Curtin 2010-07-08 22:13:25 +00:00
parent d40e6f70a5
commit 808e1ada94

View file

@ -263,7 +263,7 @@ class SysModuleTest(unittest.TestCase):
# Raise SkipTest if sys doesn't have getwindowsversion attribute # Raise SkipTest if sys doesn't have getwindowsversion attribute
test.support.get_attribute(sys, "getwindowsversion") test.support.get_attribute(sys, "getwindowsversion")
v = sys.getwindowsversion() v = sys.getwindowsversion()
self.assertEqual(len(v), 9) self.assertEqual(len(v), 5)
self.assertIsInstance(v[0], int) self.assertIsInstance(v[0], int)
self.assertIsInstance(v[1], int) self.assertIsInstance(v[1], int)
self.assertIsInstance(v[2], int) self.assertIsInstance(v[2], int)