From: Utkarsh Upadhyay Date: Wed, 26 Jul 2017 10:46:17 +0000 (+0200) Subject: bpo-31043: fixed test_datetime run twice. (GH-2891) X-Git-Tag: v3.7.0a1~365 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ede9084476f88f5a86c7eaaac33cdd938e4cce93;p=thirdparty%2FPython%2Fcpython.git bpo-31043: fixed test_datetime run twice. (GH-2891) --- diff --git a/Lib/test/test_datetime.py b/Lib/test/test_datetime.py index bb22871f2b15..d659f369d54e 100644 --- a/Lib/test/test_datetime.py +++ b/Lib/test/test_datetime.py @@ -50,8 +50,6 @@ for module, suffix in zip(test_modules, test_suffixes): cls.tearDownClass = tearDownClass all_test_classes.extend(test_classes) - all_test_classes.extend(test_classes) - def test_main(): run_unittest(*all_test_classes)