Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use itemizing instead of capturing
Which I think was the intent of these tests
  • Loading branch information
lizmat committed Jul 5, 2015
1 parent 4d25274 commit 999cf98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S02-types/flattening.t
Expand Up @@ -65,10 +65,10 @@ plan 41;
push @a, {};
is(@a.elems, 3, 'Hashref literal not flattened');
my @foo;
push @a, \@foo;
push @a, $@foo;
is(@a.elems, 4, 'Arrayref not flattened');
my %foo;
push @a, \%foo;
push @a, $%foo;
is(@a.elems, 5, 'Hashref not flattened');
push @a, @foo;
is(@a.elems, 5, 'Array flattened');
Expand Down

0 comments on commit 999cf98

Please sign in to comment.