From 8f22d4772a78077095903768cbfe156fd4b1aadb Mon Sep 17 00:00:00 2001 From: renecatharsis Date: Mon, 22 Jul 2013 14:23:09 +0200 Subject: [PATCH] Update BcryptTest.php Fixed typo in exception message. --- test/Password/BcryptTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Password/BcryptTest.php b/test/Password/BcryptTest.php index 97b0672..5cfefe9 100644 --- a/test/Password/BcryptTest.php +++ b/test/Password/BcryptTest.php @@ -148,7 +148,7 @@ public function testPasswordWith8bitCharacter() $this->bcrypt->create($password)); } else { $this->setExpectedException('Zend\Crypt\Password\Exception\RuntimeException', - 'The bcrypt implementation used by PHP can contains a security flaw ' . + 'The bcrypt implementation used by PHP can contain a security flaw ' . 'using password with 8-bit character. ' . 'We suggest to upgrade to PHP 5.3.7+ or use passwords with only 7-bit characters' );