diff options
Diffstat (limited to 'Lib/test/test_rfc822.py')
-rw-r--r-- | Lib/test/test_rfc822.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_rfc822.py b/Lib/test/test_rfc822.py index 1f5dd64..d2883e9 100644 --- a/Lib/test/test_rfc822.py +++ b/Lib/test/test_rfc822.py @@ -1,6 +1,6 @@ import rfc822 import unittest -from test import test_support +from test import support try: from io import StringIO @@ -249,7 +249,7 @@ A test message. def test_main(): - test_support.run_unittest(MessageTestCase) + support.run_unittest(MessageTestCase) if __name__ == "__main__": |