Skip to content

Commit d35c69e

Browse files
committed
Unfudge tests for RT #118467.
1 parent 442a23d commit d35c69e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

S06-multi/positional-vs-named.t

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use v6;
22
use Test;
3-
plan 28;
3+
plan 27;
44

55
# check the subroutine with the closest matching signature is called
66
#
@@ -65,10 +65,6 @@ is( wind('f', 'g', her => 3), 'pos f pos g her 3', 'pos, pos, named');
6565
{
6666
multi catch(*@all ) { 1 } #OK not used
6767
multi catch(*@all, :$really! ) { 2 } #OK not used
68-
#?rakudo todo 'RT #118467'
69-
lives-ok { catch() }, # TODO: remove 'lives-ok' when this no longer dies
70-
'required named occurring after slurpy not considered a multi candidate (temp. test)';
71-
#?rakudo 2 skip 'slurpy and named interaction RT #118467'
7268
is catch(0, 5), 1, 'slurpy and named interact well (1)';
7369
is catch(0, 5, :!really), 2, 'slurpy and named interact well (2)';
7470
}

0 commit comments

Comments
 (0)