From 57a2f45bb6fa563fb4eee9f02e4ac2ada65ea6c3 Mon Sep 17 00:00:00 2001 From: Samarth D N Date: Fri, 31 Jul 2026 20:17:13 +0530 Subject: [PATCH] fix: correct typo in test data (#8341) --- test/mitmproxy/test_command.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/mitmproxy/test_command.py b/test/mitmproxy/test_command.py index 24d271547..f3d7129d7 100644 --- a/test/mitmproxy/test_command.py +++ b/test/mitmproxy/test_command.py @@ -501,13 +501,13 @@ class TestCommand: [], ], [ - " spaces_at_the_begining_are_not_stripped", + " spaces_at_the_beginning_are_not_stripped", [ command.ParseResult( value=" ", type=mitmproxy.types.Space, valid=True ), command.ParseResult( - value="spaces_at_the_begining_are_not_stripped", + value="spaces_at_the_beginning_are_not_stripped", type=mitmproxy.types.Cmd, valid=False, ), @@ -515,13 +515,13 @@ class TestCommand: [], ], [ - " spaces_at_the_begining_are_not_stripped neither_at_the_end ", + " spaces_at_the_beginning_are_not_stripped neither_at_the_end ", [ command.ParseResult( value=" ", type=mitmproxy.types.Space, valid=True ), command.ParseResult( - value="spaces_at_the_begining_are_not_stripped", + value="spaces_at_the_beginning_are_not_stripped", type=mitmproxy.types.Cmd, valid=False, ),