Skip to content

Commit

Permalink
Unfudge now passing let/temp tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zoffixznet committed Jan 23, 2018
1 parent 286570e commit 311ef61
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion S04-blocks-and-statements/let.t
Expand Up @@ -87,7 +87,6 @@ plan 15;
my @a is default(Nil) = Nil;
my @c is default(Nil) = Nil;
{ let @a; Nil }
#?rakudo todo 'https://github.com/rakudo/rakudo/issues/1432'
is-deeply @a, @c, '`let` keeps around Nils in Arrays when they exist';

(my %h is default(Nil))<a> = Nil;
Expand Down
1 change: 0 additions & 1 deletion S04-blocks-and-statements/temp.t
Expand Up @@ -244,7 +244,6 @@ throws-like { temp $*foo = 42 }, X::Dynamic::NotFound,
my @a is default(Nil) = Nil;
my @c is default(Nil) = Nil;
{ temp @a }
#?rakudo todo 'https://github.com/rakudo/rakudo/issues/1432'
is-deeply @a, @c, '`temp` keeps around Nils in Arrays when they exist';

(my %h is default(Nil))<a> = Nil;
Expand Down

0 comments on commit 311ef61

Please sign in to comment.