From f08ad94d4d8a6aa609144d33b277317276fe96f5 Mon Sep 17 00:00:00 2001 From: BathreeNode <101283333+batuhankocyigit@users.noreply.github.com> Date: Tue, 3 Mar 2026 09:10:35 +0300 Subject: [PATCH] fix: correct typo 'Grup' -> 'Group' in test section headers Three section header comments in tests/test_run_agent.py used 'Grup' instead of 'Group': - Line 124: # Grup 1: Pure Functions - Line 276: # Grup 2: State / Structure Methods - Line 572: # Grup 3: Conversation Loop Pieces (OpenAI mock) --- tests/test_run_agent.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_run_agent.py b/tests/test_run_agent.py index f5cb19334d..177d872913 100644 --- a/tests/test_run_agent.py +++ b/tests/test_run_agent.py @@ -121,7 +121,7 @@ def _mock_response(content="Hello", finish_reason="stop", tool_calls=None, # =================================================================== -# Grup 1: Pure Functions +# Group 1: Pure Functions # =================================================================== @@ -273,7 +273,7 @@ class TestMaskApiKey: # =================================================================== -# Grup 2: State / Structure Methods +# Group 2: State / Structure Methods # =================================================================== @@ -569,7 +569,7 @@ class TestFormatToolsForSystemMessage: # =================================================================== -# Grup 3: Conversation Loop Pieces (OpenAI mock) +# Group 3: Conversation Loop Pieces (OpenAI mock) # ===================================================================