Skip to content

Commit

Permalink
fixed typo in test
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Mar 9, 2014
1 parent 50afa0d commit 3e3e997
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,4 +1,6 @@

4.89 2014-03-10

4.88 2014-03-09
- Added build_controller method to Mojolicious.
- Added match method to Mojolicious::Routes.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Expand Up @@ -43,7 +43,7 @@ has types => sub { Mojolicious::Types->new };
has validator => sub { Mojolicious::Validator->new };

our $CODENAME = 'Top Hat';
our $VERSION = '4.88';
our $VERSION = '4.89';

sub AUTOLOAD {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion t/mojo/transactor.t
Expand Up @@ -19,7 +19,7 @@ $t->add_generator(
}
);

# Simle GET
# Simple GET
my $tx = $t->tx(GET => 'mojolicio.us/foo.html?bar=baz');
is $tx->req->url->to_abs, 'http://mojolicio.us/foo.html?bar=baz', 'right URL';
is $tx->req->method, 'GET', 'right method';
Expand Down

0 comments on commit 3e3e997

Please sign in to comment.