Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class.git] / t / inflate / datetime_firebird.t
index 613dfe3..c68a762 100644 (file)
@@ -52,7 +52,7 @@ foreach my $conn_idx (0..$#info) {
 
   $schema = DBICTest::Schema->connect($dsn, $user, $pass, {
     quote_char => '"',
-    name_sep   => '.', 
+    name_sep   => '.',
     on_connect_call => [ 'datetime_setup' ],
   });
 
@@ -78,7 +78,7 @@ SQL
   my $row;
   ok( $row = $rs->create({
     id => 1,
-    starts_at => $date_only, 
+    starts_at => $date_only,
     created_on => $dt,
   }));
   ok( $row = $rs->search({ id => 1 }, { select => [qw/starts_at created_on/] })
@@ -96,7 +96,7 @@ done_testing;
 
 # clean up our mess
 sub cleanup {
-  my $dbh; 
+  my $dbh;
   eval {
     $schema->storage->disconnect; # to avoid object FOO is in use errors
     $dbh = $schema->storage->dbh;