Commit 911b2732de27310ed28d16a621c44f06badf2ca0
1 parent
e073ff5a
Update imports for log_helper in tests
Showing
3 changed files
with
5 additions
and
5 deletions
tests/common/log_helper/log_helper_test_imported.py
tests/common/log_helper/log_helper_test_main.py
| 1 | 1 | """ Test log_helpers """ |
| 2 | 2 | |
| 3 | 3 | import sys |
| 4 | -from tests.util.log_helper import log_helper_test_imported | |
| 5 | -from oletools.util.log_helper import log_helper | |
| 4 | +from tests.common.log_helper import log_helper_test_imported | |
| 5 | +from oletools.common.log_helper import log_helper | |
| 6 | 6 | |
| 7 | 7 | DEBUG_MESSAGE = 'main: debug log' |
| 8 | 8 | INFO_MESSAGE = 'main: info log' | ... | ... |
tests/common/log_helper/test_log_helper.py
| ... | ... | @@ -9,8 +9,8 @@ import unittest |
| 9 | 9 | import sys |
| 10 | 10 | import json |
| 11 | 11 | import subprocess |
| 12 | -from tests.util.log_helper import log_helper_test_main | |
| 13 | -from tests.util.log_helper import log_helper_test_imported | |
| 12 | +from tests.common.log_helper import log_helper_test_main | |
| 13 | +from tests.common.log_helper import log_helper_test_imported | |
| 14 | 14 | from os.path import dirname, join, relpath, abspath |
| 15 | 15 | |
| 16 | 16 | # this is the common base of "tests" and "oletools" dirs | ... | ... |