Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Aug 9, 2011
1 parent 62ba7c1 commit 0203409
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions Changes
Expand Up @@ -3,6 +3,7 @@ This file documents the revision history for Perl extension Mojolicious.
1.74 2011-08-09 00:00:00
- Made "ioloop.t" easier to debug and added more tests.
- Improved documentation.
- Fixed typos.

1.73 2011-08-09 00:00:00
- Added EXPERIMENTAL -strict flag to Mojo::Base.
Expand Down
6 changes: 3 additions & 3 deletions t/mojo/app.t
Expand Up @@ -177,10 +177,10 @@ $ua->get('/15/', $t->begin);
($tx, $tx2, my $tx3) = $t->start;
ok $tx->is_done, 'transaction is done';
is $tx->res->body, 'Your Mojo is working!', 'right content';
ok !$tx->error, 'has no errors';
ok !$tx->error, 'no error';
ok $tx2->is_done, 'transaction is done';
is $tx2->res->body, 'Your Mojo is working!', 'right content';
ok !$tx2->error, 'has no error';
ok !$tx2->error, 'no error';
ok $tx3->is_done, 'transaction is done';
is $tx3->res->body, 'Your Mojo is working!', 'right content';
ok !$tx3->error, 'has no error';
ok !$tx3->error, 'no error';
2 changes: 1 addition & 1 deletion t/mojo/ioloop.t
Expand Up @@ -127,7 +127,7 @@ $loop->connect(
);
$loop->start;
ok $connected, 'connected';
ok !$error, 'has no error';
ok !$error, 'no error';
$connected = $error = undef;
$loop->connect(
address => 'localhost',
Expand Down
2 changes: 1 addition & 1 deletion t/mojo/json.t
Expand Up @@ -242,7 +242,7 @@ is_deeply $hash, {foo => 'c:\progra~1\mozill~1\firefox.exe'},
# Huge string
$string = $json->encode(['a' x 32768]);
is_deeply $json->decode($string), ['a' x 32768], 'successful roundtrip';
is $json->error, undef, 'no errors';
is $json->error, undef, 'no error';

# u2028 and u2029
$string = $json->encode(["\x{2028}test\x{2029}123"]);
Expand Down

0 comments on commit 0203409

Please sign in to comment.