Skip to content

Commit d957740

Browse files
committed
Untodo some tests we now pass; spotted by rindolf++.
1 parent 7dbc061 commit d957740

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

S02-literals/misc-interpolation.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ is('$world @list[] %hash{} &func()', '$world @list[] %hash{} &func()', 'single q
5858
# Corner-cases
5959
is("Hello $world!", "Hello World!", "! is not a part of var names");
6060
sub list_count (*@args) { +@args }
61-
#?rakudo todo 'nom regression'
6261
is(list_count("@list[]"), 1, 'quoted interpolation gets string context');
6362
is(qq{a{chr 98}c}, 'abc', "curly brace delimiters don't interfere with closure interpolation");
6463

S02-literals/string-interpolation.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ plan 12;
2222
{
2323
# interpolating into double quotes results in a Str
2424
my $a = 3;
25-
#?rakudo todo 'type of interpolation literal'
2625
ok "$a" ~~ Str, '"$a" results in a Str';
2726
ok "{3}" ~~ Str, '"{3}" results in a Str';
2827

0 commit comments

Comments
 (0)