From: Peter Rabbitson <ribasushi@cpan.org>
Date: Fri, 24 Apr 2009 15:22:05 +0000 (+0000)
Subject: Cosmetic change
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ece2b6ec3170f5a237c2c168850466b9a7383756;p=dbsrgits%2FDBIx-Class-Historic.git

Cosmetic change
---

diff --git a/t/72pg.t b/t/72pg.t
index 27cb1b6..f2df2d5 100644
--- a/t/72pg.t
+++ b/t/72pg.t
@@ -19,12 +19,11 @@ use DBICTest;
   __PACKAGE__->column_info_from_storage(1);
   __PACKAGE__->set_primary_key('id');
 
-sub store_column {
+  sub store_column {
     my ($self, $name, $value) = @_;
     $value = '#'.$value if($name eq "storecolumn");
     $self->maybe::next::method($name, $value);
-}
-
+  }
 }
 
 {
@@ -278,4 +277,3 @@ END {
         $dbh->do("DROP SCHEMA testschema;");
     }
 }
-