diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Storable/t/integer.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Storable/t/integer.t b/ext/Storable/t/integer.t index 33740d2251..3d0c41070b 100644 --- a/ext/Storable/t/integer.t +++ b/ext/Storable/t/integer.t @@ -148,7 +148,7 @@ foreach (@processes) { # $eq = && (($copy_s1 <=> 0) == ($copy1 <=> 0)); # Split this into 2 tests, to cater for 5.005_03 - my $bit = ok (($copy_s1 ^ $copy1 == 0), "$process $copy1 (bitpattern)"); + my $bit = ok (($copy_s1 ^ $copy1) == 0, "$process $copy1 (bitpattern)"); # This is sick. 5.005_03 survives without the IV/UV flag, and somehow # gets it right, providing you don't have side effects of conversion. # local $TODO; |