Skip to content

Commit

Permalink
make MixHash.kv test more robust
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Apr 13, 2014
1 parent 67a7d45 commit 2053bb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S02-types/mixhash.t
Expand Up @@ -123,7 +123,7 @@ sub showkv($x) {

{
my $a = (1,2,3,2,2,2,2).MixHash;
is $a.kv.sort({ .[0] }), ((1, 1), (2, 5), (3, 1)).list.sort, "MixHash.kv returns list of keys and values";
is $a.kv.tree.sort({ .[0] }), ([1, 1], [2, 5], [3, 1]), "MixHash.kv returns list of keys and values";
}


Expand Down

0 comments on commit 2053bb2

Please sign in to comment.