Skip to content

Commit

Permalink
fixed test descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Oct 26, 2013
1 parent d83c784 commit 1a65dea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/mojo/request.t
Expand Up @@ -1667,7 +1667,7 @@ is $req->version, '1.1', 'right version';
is $req->url, '/', 'right URL';
is $req->upload('foo %22bar%22 baz')->filename, 'fo%22o%22.txt',
'right filename';
is $req->upload('foo %22bar%22 baz')->slurp, 'test', 'right value';
is $req->upload('foo %22bar%22 baz')->slurp, 'test', 'right content';

# Firefox 24 multipart/form-data request (with quotation marks)
$req = Mojo::Message::Request->new;
Expand Down Expand Up @@ -1696,7 +1696,7 @@ is $req->version, '1.1', 'right version';
is $req->url, '/', 'right URL';
is $req->upload('foo \"bar\" baz')->filename, 'fo\\"o\\".txt',
'right filename';
is $req->upload('foo \"bar\" baz')->slurp, 'test', 'right value';
is $req->upload('foo \"bar\" baz')->slurp, 'test', 'right content';

# Chrome 5 multipart/form-data request (UTF-8)
$req = Mojo::Message::Request->new;
Expand Down

0 comments on commit 1a65dea

Please sign in to comment.