From f1140299dc2bef9b4823398ea9a39cf61bd28c43 Mon Sep 17 00:00:00 2001 From: Ben King <9087625+benfdking@users.noreply.github.com> Date: Thu, 9 Oct 2025 18:53:35 +0100 Subject: [PATCH] chore: small dbt test addition --- tests/dbt/cli/test_selectors.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/dbt/cli/test_selectors.py b/tests/dbt/cli/test_selectors.py index a2c19057eb..17f0195f58 100644 --- a/tests/dbt/cli/test_selectors.py +++ b/tests/dbt/cli/test_selectors.py @@ -165,6 +165,7 @@ def test_select_by_dbt_names( ctx = jaffle_shop_duckdb_context ctx.load() assert '"jaffle_shop"."main"."agg_orders"' in ctx.models + assert ctx.get_model('"jaffle_shop"."main"."agg_orders"').tags == ["agg"] selector = ctx._new_selector() assert isinstance(selector, DbtSelector)