Skip to content

Commit 7daa89c

Browse files
committed
RT #121326: correct and unfudge tests
1 parent 0fd86f6 commit 7daa89c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

S03-operators/comparison.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@ is("a\0" cmp "a", Order::More, 'a\0 cmp a is more');
5353
{
5454
class Blue {
5555
method Numeric() { 3; }
56+
method Real() { 3; }
5657
}
5758
my $a = Blue.new;
5859

5960
ok +$a == 3, '+$a == 3 (just checking)';
6061
ok $a == 3, '$a == 3';
6162
ok $a != 4, '$a != 4';
6263
nok $a != 3, 'not true that $a != 3';
63-
64-
#?rakudo 4 todo 'RT #121326'
64+
6565
lives_ok { $a < 5 }, '$a < 5 lives okay';
6666
lives_ok { $a <= 5 }, '$a <= 5 lives okay';
6767
lives_ok { $a > 5 }, '$a > 5 lives okay';

0 commit comments

Comments
 (0)