Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove duplicate test for unary postfix hyper operator
  • Loading branch information
usev6 committed Dec 18, 2014
1 parent 79c35cc commit d91bcc4
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions S03-metaops/hyper.t
Expand Up @@ -2,7 +2,7 @@ use v6;

use Test;

plan 260;
plan 259;

=begin pod
Expand Down Expand Up @@ -203,13 +203,6 @@ my @e;
is(~@r, ~@e, "method call on integer list elements (ASCII)");
}

{
my (@r, @e);
(@r = (1, 4, 9))»++;
@e = (2, 5, 10);
is(~@r, ~@e, "operator call on integer list elements");
}

{
my (@r, @e);
(@r = (1, 4, 9))»++;
Expand Down

0 comments on commit d91bcc4

Please sign in to comment.