only import Test::Exception where it is needed
[catagits/Catalyst-Plugin-Authentication.git] / t / lib / AuthRealmTestAppProgressive / Controller / Root.pm
index 62f89b4..e47ca99 100644 (file)
@@ -6,10 +6,9 @@ use base qw/Catalyst::Controller/;
 __PACKAGE__->config(namespace => '');
 
 use Test::More;
-use Test::Exception;
 
 sub progressive : Local {
-       my ( $self, $c ) = @_;
+    my ( $self, $c ) = @_;
 
     foreach my $realm ( keys %AuthRealmTestAppProgressive::members ) {
         while ( my ( $user, $info ) = each %{$AuthRealmTestAppProgressive::members{$realm}} ) {
@@ -23,7 +22,7 @@ sub progressive : Local {
             ok( $c->user_in_realm($realm), "user in proper realm" );
         }
     }
-       $c->res->body( "ok" );
+    $c->res->body( "ok" );
 }
 
 1;