Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Actor.pm
index 2944390..83a03b9 100644 (file)
@@ -1,4 +1,4 @@
-package # hide from PAUSE 
+package # hide from PAUSE
     Actor;
 
 use strict;
@@ -16,12 +16,12 @@ __PACKAGE__->add_constructor(salary_between => 'salary >= ? AND salary <= ?');
 sub mutator_name_for { "set_$_[1]" }
 
 sub create_sql {
-       return qq{
-               id     INTEGER PRIMARY KEY,
-               name   CHAR(40),
-               film   VARCHAR(255),   
-               salary INT
-       }
+  return qq{
+    id     INTEGER PRIMARY KEY,
+    name   CHAR(40),
+    film   VARCHAR(255),
+    salary INT
+  }
 }
 
 1;