From 0fa467d40eb801e903d51c71030cfc74c7a12dd1 Mon Sep 17 00:00:00 2001 From: deadzilla Date: Wed, 8 Jul 2026 00:39:12 +0500 Subject: [PATCH] =?UTF-8?q?=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=BE:=20=D0=BF=D0=B5=D1=80=D0=B5=D0=B8=D0=BC?= =?UTF-8?q?=D0=B5=D0=BD=D0=BE=D0=B2=D0=B0=D0=BD=D0=B0=20=D0=BD=D0=B5=D0=BE?= =?UTF-8?q?=D0=B4=D0=BD=D0=BE=D0=B7=D0=BD=D0=B0=D1=87=D0=BD=D0=B0=D1=8F=20?= =?UTF-8?q?=D0=BF=D0=B5=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=BD=D0=B0=D1=8F=20?= =?UTF-8?q?l=20=D0=B2=20line?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_help_discord.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_help_discord.py b/tests/test_help_discord.py index 2647f78..f7a7324 100644 --- a/tests/test_help_discord.py +++ b/tests/test_help_discord.py @@ -61,7 +61,7 @@ class TestHelpCommandDiscord: assert cmd in message, f"Команда {cmd} не найдена" # Проверяем разделение тире между командой и описанием - lines = [l.strip() for l in message.split("\n") if "—" in l] + lines = [line.strip() for line in message.split("\n") if "—" in line] assert len(lines) >= 4