Fix warning
Tomas Doran [Tue, 9 Feb 2010 04:44:48 +0000 (04:44 +0000)]
t/003_inheriting_meta_desc.t

index dff334b..0419d3a 100644 (file)
@@ -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');
 }