From: Roman F Date: Sun, 12 Jun 2011 13:40:33 +0000 (-0400) Subject: Replaced "use parent" with "use base" in a test file to pass CPAN tests. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5baf2c80aebb6fbc9d77b4d93ee5f3917d5eccd8;p=dbsrgits%2FDBIx-Class-Schema-ResultSetAccessors.git Replaced "use parent" with "use base" in a test file to pass CPAN tests. --- diff --git a/t/lib/MyApp1/Schema/ResultSet/CD.pm b/t/lib/MyApp1/Schema/ResultSet/CD.pm index ad776db..f0e1101 100644 --- a/t/lib/MyApp1/Schema/ResultSet/CD.pm +++ b/t/lib/MyApp1/Schema/ResultSet/CD.pm @@ -3,6 +3,6 @@ package MyApp1::Schema::ResultSet::CD; use strict; use warnings; -use parent 'DBIx::Class::ResultSet'; +use base 'DBIx::Class::ResultSet'; 1; # eof \ No newline at end of file