From: gfx Date: Fri, 2 Oct 2009 11:04:15 +0000 (+0900) Subject: Fix a test X-Git-Tag: 0.37_02~30 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=cfa6d970245f1bbc9330c0e4bb3342356a43ac16 Fix a test --- diff --git a/t/000-recipes/moose_cookbook_meta_recipe3.t b/t/000-recipes/moose_cookbook_meta_recipe3.t index 1587270..b77d293 100644 --- a/t/000-recipes/moose_cookbook_meta_recipe3.t +++ b/t/000-recipes/moose_cookbook_meta_recipe3.t @@ -42,7 +42,7 @@ $| = 1; my $dump = ''; - for my $name ( $self->meta->get_attribute_list ) { + for my $name ( sort $self->meta->get_attribute_list ) { my $attribute = $self->meta->get_attribute($name); if ( $attribute->does('MyApp::Meta::Attribute::Trait::Labeled')