Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / CustomSql.pm
index bdad8b8..c87e89d 100644 (file)
@@ -1,4 +1,4 @@
-package # hide from PAUSE 
+package # hide from PAUSE
     DBICTest::Schema::CustomSql;
 
 use base qw/DBICTest::Schema::Artist/;
@@ -6,7 +6,7 @@ use base qw/DBICTest::Schema::Artist/;
 __PACKAGE__->table('dummy');
 
 __PACKAGE__->result_source_instance->name(\<<SQL);
-  ( SELECT a.*, cd.cdid AS cdid, cd.title AS title, cd.year AS year 
+  ( SELECT a.*, cd.cdid AS cdid, cd.title AS title, cd.year AS year
   FROM artist a
   JOIN cd ON cd.artist = a.artistid
   WHERE cd.year = ?)