From a52315a0cb634a858f4c55d66a6a80320943d393 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Sun, 10 Aug 2014 09:08:52 -0500 Subject: [PATCH] Hash: one more fix to unit test --- tests/Unit/Crypt/Hash/SHA256_96Test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/Crypt/Hash/SHA256_96Test.php b/tests/Unit/Crypt/Hash/SHA256_96Test.php index 303ed7aa..8fd1e82d 100644 --- a/tests/Unit/Crypt/Hash/SHA256_96Test.php +++ b/tests/Unit/Crypt/Hash/SHA256_96Test.php @@ -25,7 +25,7 @@ class Unit_Crypt_Hash_SHA256_96Test extends Unit_Crypt_Hash_SHA256Test { $tests = parent::hashData(); foreach ($tests as &$test) { - $test[3] = substr($test[2], 0, 24); + $test[2] = substr($test[2], 0, 24); } return $tests; }