Fix tests on 32-bit Perls
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 9 Jun 2018 17:13:27 +0000 (20:13 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 9 Jun 2018 17:13:27 +0000 (20:13 +0300)
t/Digest-HighwayHash.t

index 4368c639834c22ab32f9f8c210345d62b67a0b0e..c4880a4d00d7ca22397f6e4fe265a80f5113ca04 100644 (file)
@@ -5,6 +5,6 @@ use warnings;
 use Test::More tests => 4;
 BEGIN { use_ok('Digest::HighwayHash') };
 
-is highway_hash64([1, 2, 3, 4], 'hello'), 11956820856122239241, 'highway_hash64';
-is_deeply highway_hash128([1, 2, 3, 4], 'hello'), [3048112761216189476, 13900443277579286659], 'highway_hash128';
-is_deeply highway_hash256([1, 2, 3, 4], 'hello'), [8099666330974151427, 17027479935588128037, 4015249936799013189, 10027181291351549853], 'highway_hash256';
+is highway_hash64([1, 2, 3, 4], 'hello'), '11956820856122239241', 'highway_hash64';
+is_deeply highway_hash128([1, 2, 3, 4], 'hello'), ['3048112761216189476', '13900443277579286659'], 'highway_hash128';
+is_deeply highway_hash256([1, 2, 3, 4], 'hello'), ['8099666330974151427', '17027479935588128037', '4015249936799013189', '10027181291351549853'], 'highway_hash256';
This page took 0.010155 seconds and 4 git commands to generate.