Skip to content

Commit 6c3677e

Browse files
committed
fix tests
1 parent c3d4000 commit 6c3677e

2 files changed

Lines changed: 2 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: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def test_plan(
293293
# the models and how long it took
294294
assert len(output.stdout.strip().split("\n")) == 46
295295
assert not output.stderr
296-
assert len(output.outputs) == 5
296+
assert len(output.outputs) == 4
297297
text_output = convert_all_html_output_to_text(output)
298298
# TODO: Is this what we expect?
299299
# This has minor differences between CI/CD and local.
@@ -309,7 +309,6 @@ def test_plan(
309309
["pre"] + ["span"] * 4,
310310
["pre"],
311311
["pre", "span"],
312-
["pre"] + ["span"] * 9,
313312
]
314313

315314

0 commit comments

Comments
 (0)