Skip to content

Commit d1bba41

Browse files
committed
Fix test not to use .munch and unfudge it for Niecza.
1 parent b1c5468 commit d1bba41

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

S04-statements/gather.t

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ plan 21;
141141
'take with multiple arguments .flat tens out';
142142
}
143143

144-
#?niecza skip 'series'
145144
#?rakudo skip 'nom regression (loops)'
146145
{
147146
my sub grep-div(@a, $n) {
@@ -151,7 +150,7 @@ plan 21;
151150
}
152151

153152
my @evens := grep-div((1...*), 2);
154-
is ~grep-div(@evens, 3).munch(16), ~grep-div((1...100), 6), "Nested identical gathers";
153+
is ~grep-div(@evens, 3)[^16], ~grep-div((1...100), 6), "Nested identical gathers";
155154
}
156155

157156
# RT #77036

0 commit comments

Comments
 (0)