Skip to content

Commit e2039db

Browse files
committed
Unfudge Rat.base out of range base test
RT#130753: https://rt.perl.org/Ticket/Display.html?id=130753 Rakudo fix: rakudo/rakudo@301bcf9398
1 parent 5c1e69d commit e2039db

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

S32-num/base.t

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,6 @@ subtest 'all Reals can accept Whatever for second .base argument' => {
106106
}, Exception, :message{ .contains('repeat count').not },
107107
'huge digits arg does not throw weird error';
108108
}
109-
#rakudo.moar skip "RT 130753 Gives divide by zero error when trying to .base a fractional num of base 1"
110-
# RT 130753
111-
{
112-
throws-like 1.1.base(1), X::OutOfRange, "Throws like X::OutOfRange for base 1";
113-
}
109+
110+
# RT#130753
111+
throws-like { 1.1.base(1) }, X::OutOfRange, "Throws like X::OutOfRange for base 1";

0 commit comments

Comments
 (0)