From: Yuval Kogman Date: Wed, 23 Nov 2005 20:32:57 +0000 (+0000) Subject: eliminate a silly warning with void context and stuff X-Git-Tag: v0.01~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=36d8ef793d4857a1d8ce1adfe89dee16a56cd36b;p=catagits%2FCatalyst-Plugin-Authentication.git eliminate a silly warning with void context and stuff --- diff --git a/t/live_app.t b/t/live_app.t index b2070c2..260a8ea 100644 --- a/t/live_app.t +++ b/t/live_app.t @@ -49,7 +49,7 @@ use Test::More 'no_plan'; throws_ok { $c->login( "baz", "foo" ) } qr/support.*mechanism/, "can't login without any supported mech"; - + $c->res->body( "ok" ); } __PACKAGE__->config->{authentication}{users} = $users = { @@ -71,4 +71,4 @@ use Test::More 'no_plan'; use Catalyst::Test qw/AuthTestApp/; -get("/moose"); +ok( get("/moose"), "get ok");