diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2024-03-14 09:55:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 09:55:54 (GMT) |
commit | 66fb613d90fe3dea32130a5937963a9362c8a59e (patch) | |
tree | bec7c06da9e2075cec814cf1dcf17bb8b5e6978e /Lib/test | |
parent | d4028724f2c8c674202615b772913765423c69fd (diff) | |
download | cpython-66fb613d90fe3dea32130a5937963a9362c8a59e.zip cpython-66fb613d90fe3dea32130a5937963a9362c8a59e.tar.gz cpython-66fb613d90fe3dea32130a5937963a9362c8a59e.tar.bz2 |
gh-116785: Fix direct invocation of `test_inspect` (#116787)
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_inspect/test_inspect.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/test/test_inspect/test_inspect.py b/Lib/test/test_inspect/test_inspect.py index 52cf68b..9a9d34d 100644 --- a/Lib/test/test_inspect/test_inspect.py +++ b/Lib/test/test_inspect/test_inspect.py @@ -40,11 +40,11 @@ from test.support.script_helper import assert_python_ok, assert_python_failure, from test.support import has_subprocess_support, SuppressCrashReport from test import support -from . import inspect_fodder as mod -from . import inspect_fodder2 as mod2 -from . import inspect_stock_annotations -from . import inspect_stringized_annotations -from . import inspect_stringized_annotations_2 +from test.test_inspect import inspect_fodder as mod +from test.test_inspect import inspect_fodder2 as mod2 +from test.test_inspect import inspect_stock_annotations +from test.test_inspect import inspect_stringized_annotations +from test.test_inspect import inspect_stringized_annotations_2 # Functions tested in this suite: |