removed trailing hatespace people/dhoss/fix-rt-71142 mirror/people/dhoss/fix-rt-71142
Devin Austin [Fri, 30 Mar 2012 20:57:14 +0000 (13:57 -0700)]
lib/Catalyst/Plugin/Session.pm
t/live_verify_address.t

index ce527c3..470fd11 100644 (file)
@@ -801,7 +801,7 @@ expiry time for the whole session).
 
 For example:
 
-    __PACKAGE__->config('Plugin::Session' => { expires => 10000000000 }); # "forever" 
+    __PACKAGE__->config('Plugin::Session' => { expires => 10000000000 }); # "forever"
     (NB If this number is too large, Y2K38 breakage could result.)
 
     # later
index 3b2ca71..43c52c9 100644 (file)
@@ -37,18 +37,18 @@ $ua->get_ok( "http://localhost/set_session_variable/logged/in" );
 $ua->content_contains('session variable set');
 
 
-# Change Client 
+# Change Client
 #local $ENV{REMOTE_ADDR} = "192.168.1.2";
 use Plack::Builder;
 my $app = SessionTestApp->psgi_app(@_);
-builder { 
+builder {
   enable 'ForceEnv' => REMOTE_ADDR => "192.168.1.2";
   $app;
 };
 my $ua2 = Test::WWW::Mechanize::PSGI->new(
     app => $app,
     cookie_jar => {}
-);   
+);
 $ua2->get_ok( "http://localhost/get_session_variable/logged");
 $ua2->content_contains('VAR_logged=n.a.');
 
@@ -61,7 +61,7 @@ $ua->content_contains('logged in (without address)');
 $ua->get_ok( "http://localhost/set_session_variable/logged/in" );
 $ua->content_contains('session variable set');
 
-# Change Client 
+# Change Client
 local $ENV{REMOTE_ADDR} = "192.168.1.2";
 
 $ua->get_ok( "http://localhost/get_session_variable/logged" );