Skip to content

Commit 1119862

Browse files
committed
Fix magics test
1 parent 20d00a1 commit 1119862

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/integrations/jupyter/test_magics.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -299,15 +299,17 @@ def test_plan(
299299
# This has minor differences between CI/CD and local.
300300
assert "[2K" in text_output[0]
301301
assert text_output[1].startswith(
302-
"Virtually Updating 'prod' ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100.0%"
302+
"Virtually updating 'prod' environment views ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100.0%"
303303
)
304304
# TODO: Is this what we expect?
305305
assert text_output[2] == ""
306-
assert text_output[3] == "Target environment updated successfully"
306+
assert text_output[3] == ""
307+
assert text_output[4] == "Environment views updated successfully"
307308
assert convert_all_html_output_to_tags(output) == [
308309
["pre", "span"],
309310
["pre"] + ["span"] * 4,
310311
["pre"],
312+
["pre"],
311313
["pre", "span"],
312314
]
313315

0 commit comments

Comments
 (0)