fix: correct typo in test data (#8341)

This commit is contained in:
Samarth D N 2026-07-31 20:17:13 +05:30 committed by GitHub
parent c69122bd86
commit 57a2f45bb6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,
),