@@ -129,15 +129,15 @@ def assert_new_env(result, new_env="prod", from_env="prod", initialize=True) ->
129129
130130
131131def assert_model_versions_created (result ) -> None :
132- assert "Physical layer updated successfully " in result .output
132+ assert "Physical layer updated" in result .output
133133
134134
135135def assert_model_batches_evaluated (result ) -> None :
136- assert "Model batches executed successfully " in result .output
136+ assert "Model batches executed" in result .output
137137
138138
139139def assert_env_views_updated (result ) -> None :
140- assert "Virtual layer updated successfully " in result .output
140+ assert "Virtual layer updated" in result .output
141141
142142
143143def assert_backfill_success (result ) -> None :
@@ -154,7 +154,7 @@ def assert_plan_success(result, new_env="prod", from_env="prod") -> None:
154154
155155
156156def assert_virtual_update (result ) -> None :
157- assert "Virtual Update executed successfully " in result .output
157+ assert "Virtual Update executed" in result .output
158158
159159
160160def test_version (runner , tmp_path ):
@@ -246,7 +246,7 @@ def test_plan_skip_backfill(runner, tmp_path, flag):
246246 )
247247 assert result .exit_code == 0
248248 assert_virtual_update (result )
249- assert "Model batches executed successfully " not in result .output
249+ assert "Model batches executed" not in result .output
250250
251251
252252def test_plan_auto_apply (runner , tmp_path ):
@@ -473,9 +473,9 @@ def test_plan_dev_no_prompts(runner, tmp_path):
473473 cli , ["--log-file-dir" , tmp_path , "--paths" , tmp_path , "plan" , "dev" , "--no-prompts" ]
474474 )
475475 assert "Apply - Backfill Tables [y/n]: " in result .output
476- assert "Physical layer updated successfully " not in result .output
477- assert "Model batches executed successfully " not in result .output
478- assert "The target environment has been updated successfully " not in result .output
476+ assert "Physical layer updated" not in result .output
477+ assert "Model batches executed" not in result .output
478+ assert "The target environment has been updated" not in result .output
479479
480480
481481def test_plan_dev_auto_apply (runner , tmp_path ):
0 commit comments