Skip to content

Commit

Permalink
fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
perigrin committed Nov 27, 2012
1 parent 8c4bb00 commit d9d34ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions t/plugins/uri_template.t
Expand Up @@ -18,7 +18,6 @@ my $handler = builder {
];
};

use Data::Printer;
test_psgi
app => $handler,
client => sub {
Expand All @@ -29,4 +28,4 @@ test_psgi
}
};

done_testing();
done_testing();
4 changes: 2 additions & 2 deletions t/resource_abstract.t
Expand Up @@ -27,11 +27,11 @@ test_psgi
}
{
my $resp = $cb->( PUT "/", );
is $resp->code, 405, 'PUT / is 405 Not Allowed';
is $resp->code, 200, 'PUT / is 200';
}
{
my $resp = $cb->( HTTP::Request->new( 'PROPFIND', '/' ) );
is $resp->code, 405, 'PROPFIND / is 405 Not Allowed';
is $resp->code, 405, 'PROPFIND / is 405';
}
};

Expand Down

0 comments on commit d9d34ba

Please sign in to comment.