summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_datetime.py
diff options
context:
space:
mode:
authorHai Shi <shihai1992@gmail.com>2020-08-03 16:41:24 (GMT)
committerGitHub <noreply@github.com>2020-08-03 16:41:24 (GMT)
commita7f5d93bb6906d0f999248b47295d3a59b130f4d (patch)
treea0dc5043ecc7a4250902f8d14c802382b1c94b8a /Lib/test/test_datetime.py
parent488512bf4953d856fcb049a05060a450af52fcdc (diff)
downloadcpython-a7f5d93bb6906d0f999248b47295d3a59b130f4d.zip
cpython-a7f5d93bb6906d0f999248b47295d3a59b130f4d.tar.gz
cpython-a7f5d93bb6906d0f999248b47295d3a59b130f4d.tar.bz2
bpo-40275: Use new test.support helper submodules in tests (GH-21449)
Diffstat (limited to 'Lib/test/test_datetime.py')
-rw-r--r--Lib/test/test_datetime.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_datetime.py b/Lib/test/test_datetime.py
index d659f36..bdb9f02 100644
--- a/Lib/test/test_datetime.py
+++ b/Lib/test/test_datetime.py
@@ -1,7 +1,9 @@
import unittest
import sys
-from test.support import import_fresh_module, run_unittest
+from test.support import run_unittest
+from test.support.import_helper import import_fresh_module
+
TESTS = 'test.datetimetester'