Skip to content

Commit

Permalink
Fix a test for RT 69314, fudge S06-advanced_subroutine_features/calls…
Browse files Browse the repository at this point in the history
…ame.t for Rakudo
  • Loading branch information
Tadeusz Sośnierz committed Sep 14, 2011
1 parent e42db46 commit 328f005
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S06-advanced_subroutine_features/callsame.t
Expand Up @@ -12,6 +12,7 @@ use Test;
callsame;
}
lives_ok { rt71754( 71754 ) }, 'Can call multi that uses "callsame"';
#?rakudo todo 'RT 71754'
is @called, <Int Num>, 'multi with "callsame" worked';
}

Expand All @@ -20,11 +21,10 @@ use Test;
{
sub rt69314($n) {
if $n {
callsame($n-1);
callsame;
}
};

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

}
Expand Down

0 comments on commit 328f005

Please sign in to comment.