Skip to content

Commit

Permalink
Merge pull request #134 from mauke/patch-1
Browse files Browse the repository at this point in the history
fix precedence issue in uniqnum.t
  • Loading branch information
leonerd authored Aug 13, 2024
2 parents 271b25d + 57e593b commit 37caeda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/uniqnum.t
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ SKIP: {
}
if (eval {
my $nanish = "$NaN" + 0;
$nanish != 0 && !$nanish != $NaN;
$nanish != 0 && $nanish != $NaN && $nanish != $nanish;
}) {
push @nums, $NaN;
}
Expand Down

0 comments on commit 37caeda

Please sign in to comment.