projects
/
p5sagit/Function-Parameters.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
096dbce
)
fix MooseX-Method-Signatures test relying on hash ordering
Lukas Mai [Sat, 24 Nov 2012 03:15:27 +0000 (
04:15
+0100)]
t/foreign/MooseX-Method-Signatures/list.t
patch
|
blob
|
blame
|
history
diff --git
a/t/foreign/MooseX-Method-Signatures/list.t
b/t/foreign/MooseX-Method-Signatures/list.t
index
7309114
..
9699590
100644
(file)
--- 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;
},
);