Skip to content

Commit

Permalink
Update Unittests for HHVM
Browse files Browse the repository at this point in the history
  • Loading branch information
blar committed Nov 8, 2015
1 parent 28a777f commit ef3c357
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Blar/Hash/HmacHashTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function testMd5() {
$hash = new HmacHash('md5', '1337');
$hash->push('Hello World');
$this->assertEquals('53d98cf0aa1b21b7fc2c676a86106221', $hash);
$this->assertEquals(hash_hmac('md5', 'Hello World', 1337), $hash);
$this->assertEquals(hash_hmac('md5', 'Hello World', '1337'), $hash);
}

public function testSha1() {
Expand Down

0 comments on commit ef3c357

Please sign in to comment.