From e8e99ec8f447c7fde9dee361d846badc6dbdbd74 Mon Sep 17 00:00:00 2001 From: VersusFacit <67295367+VersusFacit@users.noreply.github.com> Date: Thu, 26 Sep 2024 16:46:08 -0700 Subject: [PATCH] Update expected rows to reflect what the append strategy actually does --- tests/functional/iceberg/test_incremental_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/iceberg/test_incremental_models.py b/tests/functional/iceberg/test_incremental_models.py index a02d9ffed..29e429eef 100644 --- a/tests/functional/iceberg/test_incremental_models.py +++ b/tests/functional/iceberg/test_incremental_models.py @@ -121,6 +121,6 @@ def test_incremental_strategies_with_update(self, project, setup_class): run_results = run_dbt(["run", "-s", "append", "merge", "delete_insert"]) assert len(run_results) == 3 - self.__check_correct_operations("append", rows_affected=3) + self.__check_correct_operations("append", rows_affected=2) self.__check_correct_operations("merge", rows_affected=1) self.__check_correct_operations("delete_insert", rows_affected=1)