@@ -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 ):
@@ -268,7 +268,7 @@ def test_plan_skip_backfill(runner, tmp_path, flag):
268268 )
269269 assert result .exit_code == 0
270270 assert_virtual_update (result )
271- assert "Model batches executed successfully " not in result .output
271+ assert "Model batches executed" not in result .output
272272
273273
274274def test_plan_auto_apply (runner , tmp_path ):
@@ -495,9 +495,9 @@ def test_plan_dev_no_prompts(runner, tmp_path):
495495 cli , ["--log-file-dir" , tmp_path , "--paths" , tmp_path , "plan" , "dev" , "--no-prompts" ]
496496 )
497497 assert "Apply - Backfill Tables [y/n]: " in result .output
498- assert "Physical layer updated successfully " not in result .output
499- assert "Model batches executed successfully " not in result .output
500- assert "The target environment has been updated successfully " not in result .output
498+ assert "Physical layer updated" not in result .output
499+ assert "Model batches executed" not in result .output
500+ assert "The target environment has been updated" not in result .output
501501
502502
503503def test_plan_dev_auto_apply (runner , tmp_path ):
0 commit comments