1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-11-27 04:46:26 +01:00

Tests/TripleDES: fix data provider for new test vectors

This commit is contained in:
terrafrost 2014-12-31 19:18:57 -06:00
parent 9199e624b2
commit 805c99458b

View File

@ -138,7 +138,7 @@ class Unit_Crypt_TripleDESTest extends PhpseclibTestCase
// @codingStandardsIgnoreStart
foreach ($engines as $engine => $engineName)
foreach ($tests as $test)
$result[] = array($engine, $engineName, $test[0], $test[1], $test[2]);
$result[] = array($engine, $engineName, $test[0], $test[1], $test[2], $test[3]);
// @codingStandardsIgnoreEnd
return $result;
}