Skip to content

Commit 9119a79

Browse files
committed
Unfudge tests for rakudo.jvm.
1 parent c02bce1 commit 9119a79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

S03-operators/arith.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,10 +295,10 @@ All uses of a zero modulus or divisor should 'die', and the
295295

296296
my $x;
297297

298-
#?rakudo 2 todo 'modulo by zero'
298+
#?rakudo.parrot 2 todo 'modulo by zero'
299299
eval_dies_ok('say 3 % 0', 'Modulo zero dies and is catchable');
300300
dies_ok( { $x = 0; say 3 % $x; }, 'Modulo zero dies and is catchable with VInt/VRat variables');
301-
#?rakudo todo 'die or fail?'
301+
#?rakudo.parrot todo 'die or fail?'
302302
dies_ok( { $x := 0; say 3 % $x; }, 'Modulo zero dies and is catchable with VRef variables');
303303

304304
eval_dies_ok('say 3 div 0', 'Division by zero dies and is catchable');

0 commit comments

Comments
 (0)