summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/test/test_time.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py
index b2a3a28..1289931 100644
--- a/Lib/test/test_time.py
+++ b/Lib/test/test_time.py
@@ -41,12 +41,6 @@ class TimeTestCase(unittest.TestCase):
time.asctime(time.gmtime(self.t))
self.assertRaises(TypeError, time.asctime, 0)
- def test_mktime(self):
- self.assertRaises(OverflowError,
- time.mktime, (999999, 999999, 999999, 999999,
- 999999, 999999, 999999, 999999,
- 999999))
-
def test_main():
test_support.run_unittest(TimeTestCase)