Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix fudging (todo instead of skip)
... does what commit e8859ce was supposed to do
  • Loading branch information
usev6 committed May 9, 2015
1 parent 8e3489c commit cde72ee
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions S32-num/power.t
Expand Up @@ -43,11 +43,9 @@ is(0 ** NaN, NaN, "0**NaN=NaN");
# Not at all sure the next three cases are correct!

#?niecza 2 todo 'complex NaN stringy'
#?rakudo skip 'NaN**1i should be NaN RT #124800'
#?rakudo 3 todo 'wrong results for 'NaN' used with '**' RT #124800'
is(NaN ** 1i, NaN, "NaN**1i=NaN");
#?rakudo skip '1i**NaN should be NaN RT #124803'
is(1i ** NaN, NaN, "1i**NaN=NaN");
#?rakudo skip 'NaN**0 should be NaN RT #124806'
is(NaN ** 0, NaN, "NaN**0=NaN");

is(NaN ** NaN, NaN, "NaN**NaN=NaN");
Expand Down

0 comments on commit cde72ee

Please sign in to comment.