From 9e4b2c2af95f59ac2de13fb3f061b2cd8360f39d Mon Sep 17 00:00:00 2001 From: Coke Date: Wed, 3 Aug 2011 23:19:24 -0400 Subject: [PATCH] unfudge some passing tests for nom --- S32-array/pairs.t | 1 - S32-hash/invert.t | 1 - 2 files changed, 2 deletions(-) diff --git a/S32-array/pairs.t b/S32-array/pairs.t index c4c4136971..d79ba79292 100644 --- a/S32-array/pairs.t +++ b/S32-array/pairs.t @@ -46,7 +46,6 @@ Basic C 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)'; diff --git a/S32-hash/invert.t b/S32-hash/invert.t index 13d0ecfcf3..161a15fc68 100644 --- a/S32-hash/invert.t +++ b/S32-hash/invert.t @@ -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'; }