From ecd9bf2ca01061dcfeaa4c081b68283f01209bd0 Mon Sep 17 00:00:00 2001 From: pefontana Date: Wed, 1 Apr 2026 17:31:36 -0300 Subject: [PATCH] test(e2e): revert intentional failure after CI verification MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CI correctly detected the broken assertion — e2e workflow works. --- tests/e2e/test_telegram_commands.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/e2e/test_telegram_commands.py b/tests/e2e/test_telegram_commands.py index b73aa877b..c920e4465 100644 --- a/tests/e2e/test_telegram_commands.py +++ b/tests/e2e/test_telegram_commands.py @@ -59,8 +59,6 @@ class TestTelegramSlashCommands: response_text = send.call_args[1].get("content") or send.call_args[0][1] assert "/new" in response_text assert "/status" in response_text - # Intentional breakage: this should fail in CI - assert "THIS_STRING_DOES_NOT_EXIST_IN_HELP" in response_text @pytest.mark.asyncio async def test_status_shows_session_info(self, adapter):