From d01c1b1eb7567e015039ddc6c5455243e9cb38c6 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Thu, 14 Aug 2014 10:59:37 -0500 Subject: [PATCH] AES: more unit test fixes --- tests/Unit/Crypt/AES/TestCase.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/Unit/Crypt/AES/TestCase.php b/tests/Unit/Crypt/AES/TestCase.php index 16a4089b..823acfa1 100644 --- a/tests/Unit/Crypt/AES/TestCase.php +++ b/tests/Unit/Crypt/AES/TestCase.php @@ -48,10 +48,10 @@ abstract class Unit_Crypt_AES_TestCase extends PhpseclibTestCase $result = array(); // @codingStandardsIgnoreStart - foreach ($this->modes as $mode) - foreach ($this->plaintexts as $plaintext) - foreach ($this->ivs as $iv) - foreach ($this->keys as $key) + foreach ($modes as $mode) + foreach ($plaintexts as $plaintext) + foreach ($ivs as $iv) + foreach ($keys as $key) $result[] = array($mode, $plaintext, $iv, $key); // @codingStandardsIgnoreEnd