summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2010-01-27 00:58:43 (GMT)
committerEric Smith <eric@trueblade.com>2010-01-27 00:58:43 (GMT)
commit514e77e0aed005543b0d1f13a0cb8df0914e0797 (patch)
treee334aabafa90a1a3b2c0313ad7b4f7c6780049b6 /Lib/test
parent096d0bf8b1590077089ae47d1be7ae3f42bee2e4 (diff)
downloadcpython-514e77e0aed005543b0d1f13a0cb8df0914e0797.zip
cpython-514e77e0aed005543b0d1f13a0cb8df0914e0797.tar.gz
cpython-514e77e0aed005543b0d1f13a0cb8df0914e0797.tar.bz2
Removed unneeded test.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_sys.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index d9213f1..1e28ccf 100644
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -206,7 +206,6 @@ class SysModuleTest(unittest.TestCase):
def test_getwindowsversion(self):
if hasattr(sys, "getwindowsversion"):
v = sys.getwindowsversion()
- self.assertTrue(isinstance(v[:], tuple))
self.assertEqual(len(v), 5)
self.assertIsInstance(v[0], int)
self.assertIsInstance(v[1], int)