Skip to content

Commit

Permalink
Update expected rows to reflect what the append strategy actually does
Browse files Browse the repository at this point in the history
  • Loading branch information
VersusFacit committed Sep 26, 2024
1 parent aed9b80 commit e8e99ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/iceberg/test_incremental_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit e8e99ec

Please sign in to comment.