diff --git a/S05-modifier/perl5_0.t b/S05-modifier/perl5_0.t index efd88e0006..5fd6efcbba 100644 --- a/S05-modifier/perl5_0.t +++ b/S05-modifier/perl5_0.t @@ -57,7 +57,6 @@ is($vals, 2, 'returned two values in the match'); # return all the strings we matched my @vals = "hello world" ~~ m:P5:g/(\w+)/; -#?rakudo todo 'NYI' is(+@vals, 2, 'returned two values in the match'); is(@vals[0], 'hello', 'returned correct first value in the match'); is(@vals[1], 'world', 'returned correct second value in the match');