Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Also switch to current "LoL" standard.
  • Loading branch information
colomon committed Aug 28, 2015
1 parent 14b065f commit 2b5bf32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S32-container/zip.t
Expand Up @@ -20,7 +20,7 @@ plan 14;
my @e = (0 .. 5);

#?niecza skip 'Slicel lists are NYI'
is(~zip(@a; @b), ~@e, "simple zip");
is(~zip([@a], [@b]), ~@e, "simple zip");
is(~(@a Z @b), ~@e, "also with Z char");
};

Expand All @@ -32,7 +32,7 @@ plan 14;
my @e = (0 .. 5);

#?niecza skip 'Slicel lists are NYI'
is(~zip(@a; @b; @c), ~@e, "zip of 3 arrays");
is(~zip([@a], [@b], [@c]), ~@e, "zip of 3 arrays");
is(~(@a Z @b Z @c), ~@e, "also with Z char");
};

Expand Down

0 comments on commit 2b5bf32

Please sign in to comment.