From: Shawn M Moore Date: Sun, 7 Dec 2008 02:03:21 +0000 (+0000) Subject: Rename the test class from "Base" because case insensitive file systems try to subcla... X-Git-Tag: 0.72~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=18591857ab3bc214c35353cafefb1654057684fb;p=gitmo%2FClass-MOP.git Rename the test class from "Base" because case insensitive file systems try to subclass 'base'. Whee. --- diff --git a/t/305_RT_41255.t b/t/305_RT_41255.t index 676a27d..3431127 100644 --- a/t/305_RT_41255.t +++ b/t/305_RT_41255.t @@ -7,7 +7,7 @@ use Test::Exception; use Class::MOP; { - package Base; + package BaseClass; sub m1 { 1 } sub m2 { 2 } sub m3 { 3 } @@ -15,7 +15,7 @@ use Class::MOP; sub m5 { 5 } package Derived; - use base qw(Base); + use base qw(BaseClass); sub m1; sub m2 ();