Skip to content

Commit

Permalink
Remove is definition from test
Browse files Browse the repository at this point in the history
We have a better one in the setting
  • Loading branch information
pmurias committed Apr 9, 2017
1 parent cfd1b9a commit 50818fd
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions t/nqp/084-loop-labels.t
Expand Up @@ -93,13 +93,3 @@ MAIN_LOOP: while $i < 10 {
nqp::push(@not_skipped, ~$i);
}
is(nqp::join(',', @not_skipped), '1,2,3,5,8,9,10', 'testing next with a loop label');

sub is($a, $b, $text) {
if $a == $b {
ok(1, $text)
}
else {
ok(0, $text);
say("# Expected '$b' bot got '$a'")
}
}

0 comments on commit 50818fd

Please sign in to comment.