From 8c663b655c2cd7b8e59dcc2f1631af30218247e8 Mon Sep 17 00:00:00 2001 From: menuetb <83284881+menuetb@users.noreply.github.com> Date: Fri, 10 Nov 2023 14:08:11 +0100 Subject: [PATCH] fix test generic (#270) --- tests/functional/adapter/test_basic.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/functional/adapter/test_basic.py b/tests/functional/adapter/test_basic.py index 8859bf20..74adf164 100644 --- a/tests/functional/adapter/test_basic.py +++ b/tests/functional/adapter/test_basic.py @@ -251,10 +251,8 @@ def test_generic_tests(self, project): results = run_dbt(["seed"]) relation = relation_from_name(project.adapter, "base") - relation_table_model = relation_from_name(project.adapter, "table_model") # run refresh table to disable the previous parquet file paths project.run_sql(f"refresh table {relation}") - project.run_sql(f"refresh table {relation_table_model}") # test command selecting base model results = run_dbt(["test", "-m", "base"])