From: Marius Gavrilescu Date: Sat, 8 Aug 2015 10:18:22 +0000 (+0300) Subject: Replace infohash in test with a new, working one X-Git-Tag: 0.004003~2 X-Git-Url: http://git.ieval.ro/?p=webservice-strike.git;a=commitdiff_plain;h=a33f0562be81e017147b852c2bcd8217250df45d Replace infohash in test with a new, working one --- diff --git a/t/WebService-Strike.t b/t/WebService-Strike.t index 853a98f..19e4162 100644 --- a/t/WebService-Strike.t +++ b/t/WebService-Strike.t @@ -10,7 +10,7 @@ BEGIN { use_ok('WebService::Strike') }; my ($t1, $t2, $t3); try { - ($t1, $t2, $t3) = strike qw/B425907E5755031BDA4A8D1B6DCCACA97DA14C04 5D4FD5A64E436A831383773F85FB38B888B9ECC9 85DF191A921C20B2DDAFF72368CAB93BA18C5ACE/; + ($t1, $t2, $t3) = strike qw/B425907E5755031BDA4A8D1B6DCCACA97DA14C04 5D4FD5A64E436A831383773F85FB38B888B9ECC9 ED70C185E3E3246F30B2FDB08D504EABED5EEA3F/; } catch { diag 'Error while calling strike:', "\n", Dumper $_ }; @@ -19,7 +19,7 @@ subtest 'order' => sub { plan tests => 3; is $t1->hash, 'B425907E5755031BDA4A8D1B6DCCACA97DA14C04', 'hash #1'; is $t2->hash, '5D4FD5A64E436A831383773F85FB38B888B9ECC9', 'hash #2'; - is $t3->hash, '85DF191A921C20B2DDAFF72368CAB93BA18C5ACE', 'hash #3' + is $t3->hash, 'ED70C185E3E3246F30B2FDB08D504EABED5EEA3F', 'hash #3' }; is $t1->date, 1420502400, 'date';