diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2014-08-07 00:20:22 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2014-08-07 00:20:22 (GMT) |
commit | 906091b5d0019f925016f5a02b63b5315a6ed339 (patch) | |
tree | 5554a32d19f33c3197e48adbf1a108034fee17e3 /Lib/unittest/test/test_functiontestcase.py | |
parent | a33c8436cdde808061977001da94489b7397456a (diff) | |
download | cpython-906091b5d0019f925016f5a02b63b5315a6ed339.zip cpython-906091b5d0019f925016f5a02b63b5315a6ed339.tar.gz cpython-906091b5d0019f925016f5a02b63b5315a6ed339.tar.bz2 |
#22092: use absolute imports in unittest tests. Patch by Vajrasky Kok.
Diffstat (limited to 'Lib/unittest/test/test_functiontestcase.py')
-rw-r--r-- | Lib/unittest/test/test_functiontestcase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/test/test_functiontestcase.py b/Lib/unittest/test/test_functiontestcase.py index 63dd878..3a7889c 100644 --- a/Lib/unittest/test/test_functiontestcase.py +++ b/Lib/unittest/test/test_functiontestcase.py @@ -1,6 +1,6 @@ import unittest -from .support import LoggingResult +from unittest.test.support import LoggingResult class Test_FunctionTestCase(unittest.TestCase): |