Skip to content

Commit f4fb60e

Browse files
committed
Correct tests that could never possibly work.
Resolves RT #124842.
1 parent e225997 commit f4fb60e

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

S03-junctions/misc.t

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -370,13 +370,11 @@ ok Mu & Mu ~~ Mu, 'Mu & Mu ~~ Mu works';
370370
}
371371

372372
# RT #67866: [BUG] [LHF] Error with stringifying .WHAT on any junctions
373-
#?rakudo skip 'lower case junction RT #124842'
374-
#?niecza skip 'Impossible test: === takes Any'
375373
{
376-
ok((WHAT any()) === Junction, "test WHAT on empty any junction");
377-
ok(any().WHAT === Junction, "test WHAT on empty any junction");
378-
ok((WHAT any(1,2)) === Junction, "test WHAT on any junction");
379-
ok(any(1,2).WHAT === Junction, "test WHAT on any junction");
374+
ok((WHAT any()) ~~ Junction, "test WHAT on empty any junction");
375+
ok(any().WHAT ~~ Junction, "test WHAT on empty any junction");
376+
ok((WHAT any(1,2)) ~~ Junction, "test WHAT on any junction");
377+
ok(any(1,2).WHAT ~~ Junction, "test WHAT on any junction");
380378
}
381379

382380
# Any list has junction methods

0 commit comments

Comments
 (0)