From 4389ed40d040fee4b9e3ca34dc74cfce31ea53df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Bartolom=C3=A4us?= Date: Thu, 15 Jul 2021 22:29:18 +0200 Subject: [PATCH] Remove no longer needed canary test Should have been removed with the previous commit 94857d4fda. --- integration/gather-with-loops.t | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/integration/gather-with-loops.t b/integration/gather-with-loops.t index 690a5cca13..f33537b30a 100644 --- a/integration/gather-with-loops.t +++ b/integration/gather-with-loops.t @@ -4,15 +4,10 @@ use Test; use lib $?FILE.IO.parent(2).add("packages/Test-Helpers"); use Test::Util; -plan 22; +plan 21; # https://github.com/rakudo/rakudo/issues/3634 -## canary test to notice that bug is fixed -is_run q[gather for ^1 { take 42; last }], - { status => 0, err => '', out => ''}, - 'golfed code does not blow up'; - ## last in loop { my $res = gather loop { take 42; last };