Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update .travis.yml to use Precise/Xenial distributions #109

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Update PasswordHashTest.php
  • Loading branch information
sanmai authored Feb 4, 2020
commit 3e379f440e7c8e62bb6cf48e95c367a949567de8
4 changes: 0 additions & 4 deletions test/Unit/PasswordHashTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ public function testNullBehavior() {
}

public function testIntegerBehavior() {
if (defined('HHVM_VERSION')) {
$this->markTestSkipped("HHVM does not support integer arguments");
}

$hash = password_hash(12345, PASSWORD_BCRYPT, array("salt" => "1234567890123456789012345678901234567890"));
$this->assertEquals('$2y$10$123456789012345678901ujczD5TiARVFtc68bZCAlbEg1fCIexfO', $hash);
}
Expand Down