diff --git a/tests/functional/relation_tests/test_relation_type_change.py b/tests/functional/relation_tests/test_relation_type_change.py index 974757ad4..44b44c823 100644 --- a/tests/functional/relation_tests/test_relation_type_change.py +++ b/tests/functional/relation_tests/test_relation_type_change.py @@ -40,8 +40,9 @@ def error_message(self) -> str: relations = [ Model(models.VIEW, "view"), Model(models.TABLE, "table", "default"), - Model(models.DYNAMIC_TABLE, "dynamic_table", "default"), - Model(models.DYNAMIC_ICEBERG_TABLE, "dynamic_table", "iceberg"), + # to be activated upon merge of dynamic table support PR + # Model(models.DYNAMIC_TABLE, "dynamic_table", "default"), + # Model(models.DYNAMIC_ICEBERG_TABLE, "dynamic_table", "iceberg"), Model(models.ICEBERG_TABLE, "table", "iceberg"), Model(models.ICEBERG_INCREMENTAL_TABLE, "incremental", "iceberg"), ]