summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAnthony Ferrara <ircmaxell@gmail.com>2014-01-08 13:28:11 -0500
committerAnthony Ferrara <ircmaxell@gmail.com>2014-01-08 13:28:11 -0500
commitfbbfdebebc4b35d203bca7ec650d0f66f15d2fd9 (patch)
tree257935275d5c246572ef1e98039952d34f3b22b4 /test
parent0b60f2e91f42fa95edb5ef1093ef2af15b699517 (diff)
parent0f372b684654b8c86b7b7fad7bf2db0607f99360 (diff)
downloadpassword_compat-fbbfdebebc4b35d203bca7ec650d0f66f15d2fd9.zip
password_compat-fbbfdebebc4b35d203bca7ec650d0f66f15d2fd9.tar.gz
password_compat-fbbfdebebc4b35d203bca7ec650d0f66f15d2fd9.tar.bz2
Merge branch 'encoding-fix' of https://github.com/Jacques1/password_compat into Jacques1-encoding-fix
Diffstat (limited to 'test')
-rw-r--r--test/Unit/PasswordHashTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Unit/PasswordHashTest.php b/test/Unit/PasswordHashTest.php
index 9e5e9ec..b7bbc48 100644
--- a/test/Unit/PasswordHashTest.php
+++ b/test/Unit/PasswordHashTest.php
@@ -22,7 +22,7 @@ class PasswordHashTest extends PHPUnit_Framework_TestCase {
public function testRawSalt() {
$hash = password_hash("test", PASSWORD_BCRYPT, array("salt" => "123456789012345678901" . chr(0)));
- $this->assertEquals('$2y$10$MTIzNDU2Nzg5MDEyMzQ1Nej0NmcAWSLR.oP7XOR9HD/vjUuOj100y', $hash);
+ $this->assertEquals('$2y$10$KRGxLBS0Lxe3KBCwKxOzLexLDeu0ZfqJAKTubOfy7O/yL2hjimw3u', $hash);
}
/**