projects
/
gitmo/MooseX-Emulate-Class-Accessor-Fast.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
04283e9
)
Shut up a warning from the next version of Moose
Dave Rolsky [Fri, 11 Sep 2009 01:51:52 +0000 (20:51 -0500)]
t/construction.t
patch
|
blob
|
blame
|
history
diff --git
a/t/construction.t
b/t/construction.t
index
2c07602
..
03bbaf6
100644
(file)
--- 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);
}
{