Skip to content

Commit 1c1df5b

Browse files
committed
niecza fudging
1 parent 02c1b47 commit 1c1df5b

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

‎S03-operators/inplace.t‎

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,10 @@ plan 28;
1818
#?rakudo todo 'nom regression'
1919
{
2020
my @b = <foo 123 bar 456 baz>;
21-
#?niecza todo
2221
lives_ok { @b.=grep(/<[a..z]>/)},
2322
'.= works without surrounding whitespace';
2423
is @b[0], 'foo', 'inplace grep [0]';
25-
#?niecza todo
2624
is @b[1], 'bar', 'inplace grep [1]';
27-
#?niecza todo
2825
is @b[2], 'baz', 'inplace grep [2]';
2926
}
3027

‎S06-signature/passing-arrays.t‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ plan 11;
3434
dies_ok { eval('pa(3)') }, 'non-slurpy array does not take a single Int';
3535

3636
sub ph(%h) { 1 } #OK not used
37+
#?niecza todo
3738
dies_ok { eval('ph(3)') }, 'an Int is not a Hash';
3839
}
3940

‎S32-str/substr.t‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ sub p (Int $a) { my $p = $a; return $p }
357357
is("שיעבוד כבר".substr(4, p(4)), "וד כ", ".substr on Hebrew text (substr(Int, StrPos)).");
358358
}
359359

360+
#?niecza todo
360361
eval_dies_ok 'substr(Any, 0)', 'substr needs Cool as argument';
361362

362-
363363
# vim: ft=perl6

0 commit comments

Comments
 (0)