Skip to content

Commit

Permalink
don't need both flat and subsig
Browse files Browse the repository at this point in the history
  • Loading branch information
TimToady committed Sep 18, 2015
1 parent 13af7d6 commit 95a921a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S02-types/bag.t
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ sub showkv($x) {
#?niecza 2 todo 'Bag in Bag does not work correctly yet'
isa-ok $inner-bag, Bag, "One of the bag's elements is indeed a bag!";
is showkv($inner-bag), "a:1 b:1 c:1", "With the proper elements";
my $inner-list = $b1.keys.first(List);
$inner-list = $b1.keys.first(List);
isa-ok $inner-list, List, "One of the bag's elements is indeed a List!";
is $inner-list, <c d>, 'with the proper elements';
}
Expand Down Expand Up @@ -480,7 +480,7 @@ sub showkv($x) {
{
my @pairings;
my Bag $bag .= new: <foo foo bar>;
for flat $bag.keys X $bag.keys -> ($a, $b) {
for $bag.keys X $bag.keys -> ($a, $b) {
@pairings.push: $a ~ $b;
}
@pairings .= sort;
Expand Down

0 comments on commit 95a921a

Please sign in to comment.