From 50818fd9d9a776de2df553cec408c690f4de8f72 Mon Sep 17 00:00:00 2001 From: Pawel Murias Date: Sat, 8 Apr 2017 23:21:56 +0200 Subject: [PATCH] Remove is definition from test We have a better one in the setting --- t/nqp/084-loop-labels.t | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/t/nqp/084-loop-labels.t b/t/nqp/084-loop-labels.t index 6155af0265..f9649921e7 100644 --- a/t/nqp/084-loop-labels.t +++ b/t/nqp/084-loop-labels.t @@ -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'") - } -}