Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
adopt advent test to new spec
  • Loading branch information
moritz committed Sep 10, 2014
1 parent 3d7042c commit 72b7cdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/advent2012-day13.t
Expand Up @@ -72,7 +72,7 @@ do {
my $words2 = set $slurp2.comb(/\w+/).map(*.lc);
my $unique = ($words1 (-) $words2);
isa_ok $unique, Bag, 'set difference (-)';
is_deeply $unique.list.sort, qw<aa bb cc zz>, 'set difference (-)';
is_deeply $unique.keys.sort, qw<aa bb cc zz>, 'set difference (-)';
}

my $s1 = set <A B>;
Expand Down

0 comments on commit 72b7cdc

Please sign in to comment.