X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F020_attributes%2F009_attribute_inherited_slot_specs.t;h=7903f9d9b7711772e4059c36f42d3918acb1c6bf;hb=ccd4cff9a83030a1d8d0f94e6617145d6755c798;hp=46963b783f8a5d3f14fa9bb0f095a1c74fee0129;hpb=32f143e50cde688a3fc4e6b49e96cfff6185e6fe;p=gitmo%2FMoose.git diff --git a/t/020_attributes/009_attribute_inherited_slot_specs.t b/t/020_attributes/009_attribute_inherited_slot_specs.t index 46963b7..7903f9d 100644 --- a/t/020_attributes/009_attribute_inherited_slot_specs.t +++ b/t/020_attributes/009_attribute_inherited_slot_specs.t @@ -42,8 +42,8 @@ use Test::Exception; has 'one_last_one' => (is => 'rw', isa => 'Ref'); # this one will work here .... - has 'fail' => (isa => 'CodeRef'); - has 'other_fail'; + has 'fail' => (isa => 'CodeRef', is => 'bare'); + has 'other_fail' => (is => 'bare'); package Bar; use Moose;