From 1667cdc000ce4ea68712984609257866bcd28e7a Mon Sep 17 00:00:00 2001 From: Paul Hernandez <60959+phernandez@users.noreply.github.com> Date: Sat, 6 Jun 2026 23:20:06 -0500 Subject: [PATCH] test(ci): normalize setup overwrite assertion (#898) Signed-off-by: phernandez --- tests/cli/test_ci_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cli/test_ci_commands.py b/tests/cli/test_ci_commands.py index 76e60da1..dbc21fb7 100644 --- a/tests/cli/test_ci_commands.py +++ b/tests/cli/test_ci_commands.py @@ -213,7 +213,7 @@ def test_setup_does_not_partially_write_generated_files_when_target_exists( ) assert result.exit_code == 1 - assert "pass --force to overwrite" in result.output + assert "pass --force to overwrite" in " ".join(result.output.split()) assert not (tmp_path / ".github/workflows/basic-memory.yml").exists() assert not (tmp_path / ".github/basic-memory/memory-ci-capture.md").exists() mock_seed.assert_not_awaited()