Skip to content

Commit

Permalink
unfudge some passing tests for nom
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Aug 4, 2011
1 parent 988d3f9 commit 9e4b2c2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion S32-array/pairs.t
Expand Up @@ -46,7 +46,6 @@ Basic C<pairs> tests, see S32.
{
my @array = (17, 23, 42);

#?rakudo todo 'Apparently not rw yet?'
lives_ok { for @array.pairs -> $pair {
$pair.value += 100;
} }, 'aliases returned by @array.pairs should be rw (1)';
Expand Down
1 change: 0 additions & 1 deletion S32-hash/invert.t
Expand Up @@ -8,7 +8,6 @@ plan 5;
{
my %h = a => 'b', c => 'd';
isa_ok %h.invert, List, 'Hash.invert returns a List';
#?rakudo todo 'nom regression'
is_deeply %h.invert.sort, (b => 'a', d => 'c'), 'simple Hash.invert works';
is_deeply %h, { a => 'b', c => 'd' }, 'original remains unchanged';
}
Expand Down

0 comments on commit 9e4b2c2

Please sign in to comment.