Add a NoTabs test and make it pass.
[catagits/Catalyst-Plugin-Authentication.git] / t / lib / AuthRealmTestAppProgressive / Controller / Root.pm
index 62f89b4..8e48623 100644 (file)
@@ -9,7 +9,7 @@ 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 +23,7 @@ sub progressive : Local {
             ok( $c->user_in_realm($realm), "user in proper realm" );
         }
     }
-       $c->res->body( "ok" );
+    $c->res->body( "ok" );
 }
 
 1;