diff options
author | Hai Shi <shihai1992@gmail.com> | 2020-08-04 15:51:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-04 15:51:43 (GMT) |
commit | 604bba1f8fe32479c89b9824b2231cc4480dd110 (patch) | |
tree | 5b520e35b874539336997822a8d3d7bc621877b1 /Lib/test/test_email | |
parent | da4e09fff6b483fe858997da5599c25397107ca1 (diff) | |
download | cpython-604bba1f8fe32479c89b9824b2231cc4480dd110.zip cpython-604bba1f8fe32479c89b9824b2231cc4480dd110.tar.gz cpython-604bba1f8fe32479c89b9824b2231cc4480dd110.tar.bz2 |
bpo-40275: Use new test.support helper submodules in tests (GH-21452)
Diffstat (limited to 'Lib/test/test_email')
-rw-r--r-- | Lib/test/test_email/test_email.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py index 1d28e26..ba4ed69 100644 --- a/Lib/test/test_email/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -38,7 +38,7 @@ from email import base64mime from email import quoprimime from test.support import threading_helper -from test.support import unlink +from test.support.os_helper import unlink from test.test_email import openfile, TestEmailBase # These imports are documented to work, but we are testing them using a |