Skip to content

Commit

Permalink
fixed small bug in online tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Apr 19, 2014
1 parent 5dce091 commit aac16e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changes
@@ -1,6 +1,7 @@

4.94 2014-04-19
- Relaxed name handling in Mojo::Headers a little.
- Fixed small bug in online tests.

4.93 2014-04-13
- Fixed bug where Mojolicious::Static would not use the correct default MIME
Expand Down
2 changes: 1 addition & 1 deletion t/mojo/user_agent_online.t
Expand Up @@ -160,7 +160,7 @@ is $tx->res->code, 301, 'right status';
$tx = $ua->get('http://google.com');
is $tx->req->method, 'GET', 'right method';
is $tx->req->url, 'http://google.com', 'right url';
is $tx->res->code, 301, 'right status';
is $tx->res->code, 302, 'right status';

# Simple keep-alive requests
$tx = $ua->get('http://www.wikipedia.org');
Expand Down

0 comments on commit aac16e8

Please sign in to comment.