This is an automated email from the ASF dual-hosted git repository. richardfogaca pushed a commit to branch feat/auto-refresh-dashboard in repository https://gitbox.apache.org/repos/asf/superset.git
commit 1634bfd937180b2ca62a688618203766e7ae824f Author: richard <[email protected]> AuthorDate: Tue Feb 10 21:45:42 2026 -0300 fix: update test_extension_config_full to match updated views type signature --- tests/unit_tests/extensions/test_types.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/unit_tests/extensions/test_types.py b/tests/unit_tests/extensions/test_types.py index 44137a83f1d..9973cf62b89 100644 --- a/tests/unit_tests/extensions/test_types.py +++ b/tests/unit_tests/extensions/test_types.py @@ -65,9 +65,11 @@ def test_extension_config_full(): "frontend": { "contributions": { "views": { - "sqllab.panels": [ - {"id": "query_insights.main", "name": "Query Insights"} - ] + "sqllab": { + "panels": [ + {"id": "query_insights.main", "name": "Query Insights"} + ] + } } }, "moduleFederation": {"exposes": ["./index"]},
