diff options
author | Utkarsh Upadhyay <mail@musicallyut.in> | 2017-07-26 10:46:17 (GMT) |
---|---|---|
committer | INADA Naoki <methane@users.noreply.github.com> | 2017-07-26 10:46:17 (GMT) |
commit | ede9084476f88f5a86c7eaaac33cdd938e4cce93 (patch) | |
tree | 7e5707f28f36360e06f8f6df1c46f0441d4991b4 /Lib | |
parent | 2db64823c20538a6cfc6033661fab5711d2d4585 (diff) | |
download | cpython-ede9084476f88f5a86c7eaaac33cdd938e4cce93.zip cpython-ede9084476f88f5a86c7eaaac33cdd938e4cce93.tar.gz cpython-ede9084476f88f5a86c7eaaac33cdd938e4cce93.tar.bz2 |
bpo-31043: fixed test_datetime run twice. (GH-2891)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_datetime.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_datetime.py b/Lib/test/test_datetime.py index bb22871..d659f36 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) |