Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
unfudge two passing tests for rakudo
  • Loading branch information
moritz committed Nov 2, 2011
1 parent 0b7f0f0 commit 1947757
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions S04-declarations/my.t
Expand Up @@ -7,7 +7,6 @@ plan 69;
# lexically scoped declarations are visible">
{

#?rakudo todo 'lexicals bug; RT #61838'
eval_dies_ok('$x; my $x = 42', 'my() variable not yet visible prior to declaration');
is(eval('my $x = 42; $x'), 42, 'my() variable is visible now (2)');
}
Expand Down Expand Up @@ -93,7 +92,7 @@ is( eval('
my $d = 1;
{
my $d = 3 #OK not used
}
};
$d;
'), 1, '$d is available, and the outer value has not changed' );

Expand Down
1 change: 0 additions & 1 deletion S06-signature/positional-placeholders.t
Expand Up @@ -25,7 +25,6 @@ sub non_twigil {

non_twigil(5);

#?rakudo todo 'non-twigil variable before twigil variable'
eval_dies_ok( ' {$foo; $^foo;}(1) ',
'A non-twigil variable should not precede a corresponding twigil variable' );

Expand Down

0 comments on commit 1947757

Please sign in to comment.