Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Change fudge from todo to skip to get the test file working on Niecza…
… again.
  • Loading branch information
colomon committed Oct 6, 2012
1 parent a5a1b21 commit 316e321
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S02-names-vars/names.t
Expand Up @@ -28,11 +28,11 @@ plan 142;
{
my $bear = 2.16;
is($bear, 2.16, 'simple variable lookup');
#?niecza todo
#?niecza skip 'Object reference not set to an instance of an object'
#?rakudo skip 'this kind of lookup NYI'
is($::{'bear'}, 2.16, 'variable lookup using $::{\'foo\'}');
is(::{'$bear'}, 2.16, 'variable lookup using ::{\'$foo\'}');
#?niecza todo
#?niecza skip 'Object reference not set to an instance of an object'
#?rakudo skip 'this kind of lookup NYI'
is($::<bear>, 2.16, 'variable lookup using $::<foo>');
is(::<$bear>, 2.16, 'variable lookup using ::<$foo>');
Expand Down

0 comments on commit 316e321

Please sign in to comment.