Skip to content

Commit c4a22ad

Browse files
[3.12] gh-116785: Fix direct invocation of test_inspect (GH-116787) (#116794)
gh-116785: Fix direct invocation of `test_inspect` (GH-116787) (cherry picked from commit 66fb613) Co-authored-by: Nikita Sobolev <[email protected]>
1 parent 991710a commit c4a22ad

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Lib/test/test_inspect/test_inspect.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@
3333
from test.support.script_helper import assert_python_ok, assert_python_failure
3434
from test import support
3535

36-
from . import inspect_fodder as mod
37-
from . import inspect_fodder2 as mod2
38-
from . import inspect_stock_annotations
39-
from . import inspect_stringized_annotations
40-
from . import inspect_stringized_annotations_2
36+
from test.test_inspect import inspect_fodder as mod
37+
from test.test_inspect import inspect_fodder2 as mod2
38+
from test.test_inspect import inspect_stock_annotations
39+
from test.test_inspect import inspect_stringized_annotations
40+
from test.test_inspect import inspect_stringized_annotations_2
4141

4242

4343
# Functions tested in this suite:

0 commit comments

Comments
 (0)