diff --git a/S02-names/is_cached.t b/S02-names/is_cached.t index 5ad183adfe..ffde6ce185 100644 --- a/S02-names/is_cached.t +++ b/S02-names/is_cached.t @@ -75,13 +75,11 @@ plan 38; is foo(42), 42, 'did we get the value back (1)'; is_deeply @int, [42], 'was the code done (1)'; is foo(42), 42, 'did we get the value back (2)'; - #?rakudo todo 'optimizer kills the proto even though "is cached"' is_deeply @int, [42], 'was the code done (2)'; is foo("Camelia"), "Camelia", 'did we get the value back (3)'; is_deeply @str, [], 'was the code done (3)'; is foo("Camelia"), "Camelia", 'did we get the value back (4)'; - #?rakudo todo 'optimizer kills the proto even though "is cached"' is_deeply @str, [], 'was the code done (4)'; } #4 diff --git a/S06-advanced/wrap.t b/S06-advanced/wrap.t index e08416a0ff..77dea98ecc 100644 --- a/S06-advanced/wrap.t +++ b/S06-advanced/wrap.t @@ -224,7 +224,6 @@ dies_ok { {nextsame}() }, '{nextsame}() dies properly'; &multi-to-wrap.wrap({ 2 * callsame; }); - #?rakudo todo 'RT #77472' is multi-to-wrap(5), 20, 'can wrap a multi'; }