whitespace fixes
[catagits/Catalyst-Authentication-Store-Htpasswd.git] / t / lib / TestApp / Controller / Root.pm
index e3860a1..6232e72 100644 (file)
@@ -7,11 +7,11 @@ __PACKAGE__->config(namespace => q{});
 use base 'Catalyst::Controller';
 
 # your actions replace this one
-sub default : Private { 
+sub default : Private {
     my ($self, $c) = @_;
     my $body = '';
     if ($c->authenticate({ username => 'mufasa', password => 'Circle of Life'})) {
-        $body .= "Authenticated:"; 
+        $body .= "Authenticated:";
         $body .= $c->user->id;
     }
     $c->res->body($body);