From: Tomas Doran Date: Tue, 9 Feb 2010 04:44:48 +0000 (+0000) Subject: Fix warning X-Git-Tag: 0.04~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=cde3f91b782855c0cb919a9b43df86118d98914e;p=gitmo%2FMooseX-MetaDescription.git Fix warning --- diff --git a/t/003_inheriting_meta_desc.t b/t/003_inheriting_meta_desc.t index dff334b..0419d3a 100644 --- a/t/003_inheriting_meta_desc.t +++ b/t/003_inheriting_meta_desc.t @@ -66,7 +66,7 @@ is($baz_attr->metadescription->descriptor, $baz_attr, '... got the circular ref' isa_ok($baz_attr->metadescription, 'MooseX::MetaDescription::Description'); is($baz_attr->metadescription->descriptor, $baz_attr, '... got the circular ref'); - my ($bar_attr_2, $baz_attr_2) = Bar->meta->compute_all_applicable_attributes; + my ($bar_attr_2, $baz_attr_2) = Bar->meta->get_all_attributes; is($bar_attr, $bar_attr_2, '... got the same attribute'); is($baz_attr, $baz_attr_2, '... got the same attribute'); }