Skip to content

Commit fed7442

Browse files
committed
Unfudge passing test on JVM (RT #128123)
1 parent 0a7b6c5 commit fed7442

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

S32-array/adverbs.t

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ for $@n, Any, $@s, Str -> @a, $T {
145145

146146
# multiple existing elems
147147
{
148-
#?rakudo.jvm skip 'wrong multi postcircumfix:<[ ]> selected RT #128123'
149148
is @a[1,2], <b c>, "$n multiple elem existing: value";
150149
is @a[1,2]:k, (1,2), "$n multiple elem existing: :k";
151150
is @a[1,2]:k($ok), (1,2), "$n multiple elem existing: :k(\$ok)";
@@ -230,7 +229,6 @@ for $@n, Any, $@s, Str -> @a, $T {
230229

231230
# multiple missing elems
232231
{
233-
#?rakudo.jvm skip 'wrong multi postcircumfix:<[ ]> selected RT #128123'
234232
is @a[11,12], ($T,$T), "$n multiple elem missing: value";
235233
is @a[11,12]:k, (), "$n multiple elem missing: :k";
236234
is @a[11,12]:k($ok), (), "$n multiple elem missing: :k(\$ok)";
@@ -316,7 +314,6 @@ for $@n, Any, $@s, Str -> @a, $T {
316314

317315
# mixed existing/missing elems
318316
{
319-
#?rakudo.jvm skip 'wrong multi postcircumfix:<[ ]> selected RT #128123'
320317
is @a[1,12], ("b",$T), "$n multiple elem mixed: value";
321318
is @a[1,12]:k, (1,), "$n multiple elem mixed: :k";
322319
is @a[1,12]:k($ok), (1,), "$n multiple elem mixed: :k(\$ok)";
@@ -460,7 +457,6 @@ for $@n, Any, $@s, Str -> @a, $T {
460457
my @a;
461458
@a[$(7,8,9)] = 101;
462459
is @a.elems, 4, 'container respected in array assign';
463-
#?rakudo.jvm skip 'wrong multi postcircumfix:<[ ]> selected RT #128123'
464460
is @a[$(7,8,9)], 101, 'container respected in array access';
465461
is @a[$(7,8,9)]:exists, True, 'container respected in array :exists';
466462
@a[$(7,8,9)]:delete;

0 commit comments

Comments
 (0)