Skip to content

Commit 3c9bf20

Browse files
committed
use standard "NYI" text
1 parent 58c8aea commit 3c9bf20

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

S06-operator-overloading/sub.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -396,15 +396,15 @@ Testing operator overloading subroutines
396396
is EVAL('sub infix:<+>($a, $b) { 42 }; 5 + 5'), 42, 'infix:<+>($a, $b)';
397397
}
398398
399-
#?rakudo skip 'not yet implemented'
399+
#?rakudo skip 'NYI'
400400
{
401401
multi sub infix:<foo>($a, $b) {$a + $b};
402402
403403
my $x foo=6;
404404
is $x, 6, 'foo= works for custom operators';
405405
}
406406
407-
#?rakudo skip 'not yet implemented'
407+
#?rakudo skip 'NYI'
408408
{
409409
our sub infix:<bar>($a, $b) {$a + $b};
410410

S15-unicode-information/uniname.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ is uniname("¶", :either :one), "PARAGRAPH SIGN", "uniname(:eithe
4242
is uniname("\x[2028]", :either :one), "LINE SEPARATOR", "uniname(:either :one) returns current Unicode name for formatting character.";
4343
is uniname("\x[80]", :either :one), "<control-0080>", "uniname(:either :one) returns codepoint label for control character without any name.";
4444

45-
#?rakudo skip "uninames does not exist"
45+
#?rakudo skip "uninames NYI"
4646
is uninames("AB"), ("LATIN CAPITAL LETTER A", "LATIN CAPITAL LETTER B"), "uninames correctly works on every character";

0 commit comments

Comments
 (0)