diff options
author | Utkarsh Upadhyay <mail@musicallyut.in> | 2017-07-25 23:51:33 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-07-25 23:51:33 +0200 |
commit | cc5a65cd9025280ea67ef4bbc2a8bfe31ced6c30 (patch) | |
tree | 4565cd48860cd2c8581225565509ea327293b7f9 /Lib/test/test_datetime.py | |
parent | 830080913c22a9834d310294b9f7653234dc6a59 (diff) | |
download | cpython-cc5a65cd9025280ea67ef4bbc2a8bfe31ced6c30.tar.gz cpython-cc5a65cd9025280ea67ef4bbc2a8bfe31ced6c30.zip |
bpo-30302 Make timedelta.__repr__ more informative. (#1493)
Diffstat (limited to 'Lib/test/test_datetime.py')
-rw-r--r-- | Lib/test/test_datetime.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_datetime.py b/Lib/test/test_datetime.py index d659f369d54..bb22871f2b1 100644 --- a/Lib/test/test_datetime.py +++ b/Lib/test/test_datetime.py @@ -50,6 +50,8 @@ 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) |