mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-01 10:18:26 +00:00
fix: correct typo in test data (#8341)
This commit is contained in:
parent
c69122bd86
commit
57a2f45bb6
1 changed files with 4 additions and 4 deletions
|
|
@ -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,
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue