From: Dave Rolsky Date: Fri, 11 Sep 2009 01:51:52 +0000 (-0500) Subject: Shut up a warning from the next version of Moose X-Git-Tag: 0.00903~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Emulate-Class-Accessor-Fast.git;a=commitdiff_plain;h=b21ea3e5ac15d7f6d310deef4dff5b7cd04c18b7 Shut up a warning from the next version of Moose --- diff --git a/t/construction.t b/t/construction.t index 2c07602..03bbaf6 100644 --- a/t/construction.t +++ b/t/construction.t @@ -21,7 +21,7 @@ require_ok("MooseX::Emulate::Class::Accessor::Fast"); package MyClass::ImmutableMooseChild; use Moose; extends 'MyClass'; - __PACKAGE__->meta->make_immutable; + __PACKAGE__->meta->make_immutable(allow_mutable_ancestors => 1); } {