X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fconstruction.t;fp=t%2Fconstruction.t;h=03bbaf684f1a056da7937aa3d704e17b1d2e82e6;hb=b21ea3e5ac15d7f6d310deef4dff5b7cd04c18b7;hp=2c076028ce142f42b5968d252cb85034abe3151b;hpb=04283e901fb71c2bb86cfa69d0731d07d34c7147;p=gitmo%2FMooseX-Emulate-Class-Accessor-Fast.git 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); } {