Skip to content

Commit 113c1fd

Browse files
committed
nits from review
1 parent cafc856 commit 113c1fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/hash/tests/hash-clone.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ foreach ($algos as $algo) {
1313
$orig_final = hash_final($orig);
1414
$copy_final = hash_final($copy);
1515
var_dump($orig_final);
16-
if($orig_final !== $copy_final) {
16+
if ($orig_final !== $copy_final) {
1717
// unreachable
1818
throw new \LogicException("hash_final() results differ");
1919
}

ext/hash/tests/hash_copy_001.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ foreach ($algos as $algo) {
1313
$orig_final = hash_final($orig);
1414
$copy_final = hash_final($copy);
1515
var_dump($orig_final);
16-
if($orig_final !== $copy_final) {
16+
if ($orig_final !== $copy_final) {
1717
// unreachable
1818
throw new \LogicException("hash_final() results differ");
1919
}

0 commit comments

Comments
 (0)