mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-01 18:27:18 +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(
|
command.ParseResult(
|
||||||
value=" ", type=mitmproxy.types.Space, valid=True
|
value=" ", type=mitmproxy.types.Space, valid=True
|
||||||
),
|
),
|
||||||
command.ParseResult(
|
command.ParseResult(
|
||||||
value="spaces_at_the_begining_are_not_stripped",
|
value="spaces_at_the_beginning_are_not_stripped",
|
||||||
type=mitmproxy.types.Cmd,
|
type=mitmproxy.types.Cmd,
|
||||||
valid=False,
|
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(
|
command.ParseResult(
|
||||||
value=" ", type=mitmproxy.types.Space, valid=True
|
value=" ", type=mitmproxy.types.Space, valid=True
|
||||||
),
|
),
|
||||||
command.ParseResult(
|
command.ParseResult(
|
||||||
value="spaces_at_the_begining_are_not_stripped",
|
value="spaces_at_the_beginning_are_not_stripped",
|
||||||
type=mitmproxy.types.Cmd,
|
type=mitmproxy.types.Cmd,
|
||||||
valid=False,
|
valid=False,
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue