Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
One "flat" gains us four more tests
  • Loading branch information
moritz committed Aug 26, 2015
1 parent 43b86f4 commit 6f8b7a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S03-operators/context-forcers.t
Expand Up @@ -191,7 +191,7 @@ sub eval_elsewhere($code){ EVAL($code) }

my $y = [601, 700, 888];

my @total = (@$x, @$y);
my @total = (flat @$x, @$y);

is @total[0], 0, "total[0] is 0";
is @total[1], 100, "total[1] is 100";
Expand Down

0 comments on commit 6f8b7a3

Please sign in to comment.