From dffde1fffc89681aaef3dc1a250c126cea3de4d8 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Wed, 31 Dec 2014 23:02:22 -0600 Subject: [PATCH] Tests/AES: rm last two commits - this info can already be derived --- tests/Unit/Crypt/AES/TestCase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Unit/Crypt/AES/TestCase.php b/tests/Unit/Crypt/AES/TestCase.php index baa7d1e6..c4bcc80c 100644 --- a/tests/Unit/Crypt/AES/TestCase.php +++ b/tests/Unit/Crypt/AES/TestCase.php @@ -203,7 +203,7 @@ abstract class Unit_Crypt_AES_TestCase extends PhpseclibTestCase $c2 = $result; - $this->assertSame(bin2hex($c1), bin2hex($c2), "{$this->engine} produced different results for '$op' in $mode with " . implode(',', $test)); + $this->assertSame(bin2hex($c1), bin2hex($c2)); } /** @@ -250,6 +250,6 @@ abstract class Unit_Crypt_AES_TestCase extends PhpseclibTestCase $c2 = $result; - $this->assertNotSame(bin2hex($c1), bin2hex($c2), "{$this->engine} produced identical results for '$op' in $mode with " . implode(',', $test)); + $this->assertNotSame(bin2hex($c1), bin2hex($c2)); } }