From 92d6fce6067a9572e8cfe1c43bf50a6f03bad223 Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Fri, 14 Nov 2014 21:22:01 +0700 Subject: [PATCH] Fixes CS on latest develop as php-cs-fixer updated to 1.* --- test/FileCipherTest.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/FileCipherTest.php b/test/FileCipherTest.php index 1423afe..78b7f91 100644 --- a/test/FileCipherTest.php +++ b/test/FileCipherTest.php @@ -100,7 +100,6 @@ public function testSetCipherAlgorithmFail() $this->setExpectedException('Zend\Crypt\Symmetric\Exception\InvalidArgumentException', 'The algorithm unknown is not supported by Zend\Crypt\Symmetric\Mcrypt'); $this->fileCipher->setCipherAlgorithm('unknown'); - } public function testGetCipherSupportedAlgorithms() @@ -116,9 +115,9 @@ public function testSetHashAlgorithm() public function testSetWrongHashAlgorithm() { - $this->setExpectedException('Zend\Crypt\Exception\InvalidArgumentException', + $this->setExpectedException('Zend\Crypt\Exception\InvalidArgumentException', 'The specified hash algorithm \'unknown\' is not supported by Zend\Crypt\Hash'); - $this->fileCipher->setHashAlgorithm('unknown'); + $this->fileCipher->setHashAlgorithm('unknown'); } public function testSetPbkdf2HashAlgorithm()