Skip to content

Commit d888c1c

Browse files
committed
rakudo unfudges
1 parent 041da7e commit d888c1c

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

S03-operators/repeat.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ is(+@foo5, 0, 'repeating negative times produces an empty list');
4242

4343
my @foo_2d = [1, 2] xx 2; # should create 2d
4444
#?pugs todo 'bug'
45-
#?rakudo todo 'over-flattening'
4645
is(@foo_2d[1], [1, 2], 'can create 2d arrays'); # creates a flat 1d array
4746
# Wrong/unsure: \(1, 2) does not create a ref to the array/list (1,2), but
4847
# returns a list containing two references, i.e. (\1, \2).

S04-statements/gather.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ plan 20;
8484
}
8585

8686
# take on array-ref
87-
#?rakudo todo 'nom regression'
8887
{
8988
my @list = gather { take [1,2,3]; take [4,5,6];};
9089
my @list2 = ([1,2,3],[4,5,6]);

integration/99problems-01-to-10.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,6 @@ plan 22;
241241
return @encoded;
242242
}
243243

244-
#?rakudo todo 'unknown'
245244
is encode(<a a a a b c c a a d e e e e>).join('+'),
246245
'4 a+1 b+2 c+2 a+1 d+4 e',
247246
'We should be able to run-length encode lists';

integration/99problems-11-to-20.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ use v6;
22
use Test;
33
plan 31;
44

5-
#?rakudo todo 'nom regression'
65
{
76
# P11 (*) Modified run-length encoding.
87
#

0 commit comments

Comments
 (0)