Fix test to not need "parent" (RT #48547)
Brian Cassidy [Mon, 10 Aug 2009 11:14:59 +0000 (11:14 +0000)]
Changes
t/lib/TestApp/Controller/Root.pm

diff --git a/Changes b/Changes
index f869469..4941418 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Catalyst::Plugin::ConfigLoader.
 
+0.26  XXX
+    - Fix test to not need "parent" (RT #48547)
+
 0.25  Fri Aug 07 2009
     - Fix get_config_local_suffix and get_config_path when finding values 
       from ENV vars (RT #47937)
index c669bd9..23c2d7e 100644 (file)
@@ -2,7 +2,8 @@ package TestApp::Controller::Root;
 
 use strict;
 use warnings;
-use parent 'Catalyst::Controller';
+
+use base 'Catalyst::Controller';
 
 __PACKAGE__->config->{namespace} = '';