Skip to content

Commit

Permalink
fixed meaningless test
Browse files Browse the repository at this point in the history
  • Loading branch information
makamaka committed May 30, 2012
1 parent 09cb42b commit 194e06a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/002_data_storage_mysql.t
Original file line number Diff line number Diff line change
Expand Up @@ -168,13 +168,13 @@ subtest 'plusplus' => sub {
{
ok( $storage->plusplus($temp_id) );
my $temp = $storage->get_post_by_id($temp_id);
$temp->{plusplus}, 1;
is $temp->{plusplus}, 1;
}

{
ok( $storage->plusplus($temp_id) );
my $temp = $storage->get_post_by_id($temp_id);
$temp->{plusplus}, 2;
is $temp->{plusplus}, 2;
}
};

Expand Down

0 comments on commit 194e06a

Please sign in to comment.