diff options
Diffstat (limited to 'Lib/email')
-rw-r--r-- | Lib/email/test/test_email.py | 4 | ||||
-rw-r--r-- | Lib/email/test/test_email_codecs.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py index fc47bca..734e854 100644 --- a/Lib/email/test/test_email.py +++ b/Lib/email/test/test_email.py @@ -32,7 +32,7 @@ from email import base64MIME from email import quopriMIME from test.test_support import findfile, run_unittest -from test.test_support import __file__ as test_support_file +from email.test import __file__ as landmark NL = '\n' @@ -45,7 +45,7 @@ warnings.filterwarnings('ignore', '', DeprecationWarning, __name__) def openfile(filename): - path = os.path.join(os.path.dirname(test_support_file), 'data', filename) + path = os.path.join(os.path.dirname(landmark), 'data', filename) return open(path) diff --git a/Lib/email/test/test_email_codecs.py b/Lib/email/test/test_email_codecs.py index 63912ef..0f68151 100644 --- a/Lib/email/test/test_email_codecs.py +++ b/Lib/email/test/test_email_codecs.py @@ -2,7 +2,7 @@ # email package unit tests for (optional) Asian codecs import unittest -from test_support import TestSkipped, run_unittest +from test.test_support import TestSkipped, run_unittest from email.test.test_email import TestEmailBase from email.Charset import Charset |