Skip to content

Commit 271e601

Browse files
committed
fix var name
1 parent 9fe3c53 commit 271e601

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

integration_tests/tests/test_exposure_schema_validity.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ def seed(dbt_project: DbtProject):
99
assert seed_result is True
1010

1111

12-
@pytest.mark.skip_for_dbt_fusion
1312
def test_exposure_schema_validity_existing_exposure_yml_invalid(
1413
test_id: str, dbt_project: DbtProject
1514
):
@@ -59,7 +58,7 @@ def test_exposure_schema_validity_no_exposures(test_id: str, dbt_project: DbtPro
5958
def test_exposure_schema_validity_correct_columns_and_types(
6059
test_id: str, dbt_project: DbtProject
6160
):
62-
explicit_target_for_bigquery = (
61+
target_data_type = (
6362
"other" if dbt_project.dbt_runner.target == "dremio" else "string"
6463
)
6564
DBT_TEST_ARGS = {
@@ -71,7 +70,7 @@ def test_exposure_schema_validity_correct_columns_and_types(
7170
"referenced_columns": [
7271
{
7372
"column_name": "order_id",
74-
"data_type": explicit_target_for_bigquery,
73+
"data_type": target_data_type,
7574
}
7675
]
7776
},

0 commit comments

Comments
 (0)