Skip to content

Commit

Permalink
nits from review
Browse files Browse the repository at this point in the history
  • Loading branch information
divinity76 committed Jan 24, 2025
1 parent cafc856 commit 113c1fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ext/hash/tests/hash-clone.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ foreach ($algos as $algo) {
$orig_final = hash_final($orig);
$copy_final = hash_final($copy);
var_dump($orig_final);
if($orig_final !== $copy_final) {
if ($orig_final !== $copy_final) {
// unreachable
throw new \LogicException("hash_final() results differ");
}
Expand Down
2 changes: 1 addition & 1 deletion ext/hash/tests/hash_copy_001.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ foreach ($algos as $algo) {
$orig_final = hash_final($orig);
$copy_final = hash_final($copy);
var_dump($orig_final);
if($orig_final !== $copy_final) {
if ($orig_final !== $copy_final) {
// unreachable
throw new \LogicException("hash_final() results differ");
}
Expand Down

0 comments on commit 113c1fd

Please sign in to comment.