From: Lukas Mai Date: Sat, 24 Nov 2012 03:15:27 +0000 (+0100) Subject: fix MooseX-Method-Signatures test relying on hash ordering X-Git-Tag: v1.0004~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FFunction-Parameters.git;a=commitdiff_plain;h=662657707bf7629915a5bbba9237df019d20a301 fix MooseX-Method-Signatures test relying on hash ordering --- 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; }, );