X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fforeign%2FMooseX-Method-Signatures%2Flist.t;fp=t%2Fforeign%2FMooseX-Method-Signatures%2Flist.t;h=969959061cd1565ebbc2d4e8f1f68077eb8ba7a1;hb=b9c12f70b2c7b73970cefbb5b41982ef22477ace;hp=7309114b3419bc200ae9491d1b55a385ddd38f95;hpb=5e074131c84a5e52e7d8da01c16d2ac1cf303621;p=p5sagit%2FFunction-Parameters.git diff --git a/t/foreign/MooseX-Method-Signatures/list.t b/t/foreign/MooseX-Method-Signatures/list.t index 7309114..9699590 100644 --- a/t/foreign/MooseX-Method-Signatures/list.t +++ b/t/foreign/MooseX-Method-Signatures/list.t @@ -13,7 +13,7 @@ my $o = bless {} => 'Foo'; return join q{,}, @rest; }, method ($foo, $bar, %rest) { - return join q{,}, map { $_ => $rest{$_} } keys %rest; + return join q{,}, map { $_ => $rest{$_} } sort keys %rest; }, );