Files
superset2/tests
Amin Ghadersohi b4e1f5dba7 fix(mcp): fix test_get_chart_info module import shadowed by __init__.py function export
`import superset.mcp_service.chart.tool.get_chart_info as module` resolves
to the get_chart_info *function* rather than the module because chart/tool/__init__.py
imports the function under the same name, overwriting the submodule attribute on the
parent package. Replace with get_chart_info_module (already imported via importlib
at module level), which correctly resolves to the module object.
2026-06-30 19:31:32 +00:00
..