Skip to content

Commit 053a947

Browse files
committed
Fix tests
1 parent 29caf51 commit 053a947

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/cli/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ def test_plan_verbose(runner, tmp_path):
294294
)
295295
assert_plan_success(result)
296296
assert "sqlmesh_example.seed_model created" in result.output
297-
assert "sqlmesh_example.seed_model updated" in result.output
297+
assert "sqlmesh_example.seed_model promoted" in result.output
298298

299299

300300
def test_plan_very_verbose(runner, tmp_path, copy_to_temp_path):

tests/integrations/jupyter/test_magics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,13 +303,13 @@ def test_plan(
303303
)
304304
# TODO: Is this what we expect?
305305
assert text_output[2] == ""
306-
assert text_output[3] == "✔ Virtual layer updated"
306+
assert text_output[4] == "✔ Virtual layer updated"
307307
assert convert_all_html_output_to_tags(output) == [
308308
["pre", "span"],
309309
["pre"] + ["span"] * 4,
310310
["pre"],
311+
["pre"],
311312
["pre", "span"],
312-
["pre"] + ["span"] * 9,
313313
]
314314

315315

0 commit comments

Comments
 (0)