Skip to content

Commit

Permalink
Don't use ½ as it's not yet supported on JVM
Browse files Browse the repository at this point in the history
  • Loading branch information
zoffixznet committed Sep 30, 2016
1 parent afbc6b0 commit 74d1a70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S32-num/int.t
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ is (-32768).msb, 15, "(-32768).msb is 15";
# Test issue fixed by https://github.com/rakudo/rakudo/commit/84b7ebdf42
subtest 'smartmatching :U numeric against :D numeric does not throw' => {
plan 15;
for 42, τ, ½ -> $what {
for 42, τ, .5 -> $what {
is (Numeric ~~ $what), False, "Numeric:U ~~ $what ($what.^name())";
is (Int ~~ $what), False, "Int:U ~~ $what ($what.^name())";
is (UInt ~~ $what), False, "UInt:U ~~ $what ($what.^name())";
Expand Down

0 comments on commit 74d1a70

Please sign in to comment.