Skip to content

Commit 328f005

Browse files
author
Tadeusz Sośnierz
committed
Fix a test for RT 69314, fudge S06-advanced_subroutine_features/callsame.t for Rakudo
1 parent e42db46 commit 328f005

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

S06-advanced_subroutine_features/callsame.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ use Test;
1212
callsame;
1313
}
1414
lives_ok { rt71754( 71754 ) }, 'Can call multi that uses "callsame"';
15+
#?rakudo todo 'RT 71754'
1516
is @called, <Int Num>, 'multi with "callsame" worked';
1617
}
1718

@@ -20,11 +21,10 @@ use Test;
2021
{
2122
sub rt69314($n) {
2223
if $n {
23-
callsame($n-1);
24+
callsame;
2425
}
2526
};
2627

27-
#?rakudo todo 'Calling callsame directly from a sub'
2828
lives_ok {rt69314(1)}, 'Calling callsame directly from a sub works';
2929

3030
}

0 commit comments

Comments
 (0)