From c35bcb192ba14102a39a3830bd4ad1dbf230a483 Mon Sep 17 00:00:00 2001 From: Colin Date: Fri, 22 Nov 2024 17:28:00 -0800 Subject: [PATCH] fix test fixture --- tests/functional/relation_tests/test_relation_type_change.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/functional/relation_tests/test_relation_type_change.py b/tests/functional/relation_tests/test_relation_type_change.py index 1024a92ca..143253e47 100644 --- a/tests/functional/relation_tests/test_relation_type_change.py +++ b/tests/functional/relation_tests/test_relation_type_change.py @@ -53,8 +53,8 @@ def uses_iceberg(self) -> bool: relations = [ Model(models.VIEW, "view"), - Model(models.TABLE, "table", "default"), - Model(models.INCREMENTAL_TABLE, "table", "default", is_incremental=True), + Model(models.TABLE, "table_transient", "default"), + Model(models.INCREMENTAL_TABLE, "table_transient", "default", is_incremental=True), Model(models.DYNAMIC_TABLE, "dynamic_table", "default"), Model(models.ICEBERG_TABLE, "table", "iceberg"), Model(models.INCREMENTAL_ICEBERG_TABLE, "table", "iceberg", is_incremental=True),