Skip to content

Commit 8c7b8d7

Browse files
Fabien Villepintecmb69
Fabien Villepinte
authored andcommitted
Fix wrong function name in SKIPIF
1 parent 3204d7e commit 8c7b8d7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ext/sodium/tests/php_password_hash_argon2i.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Test interoperability of password_hash('argon2i')
33
--SKIPIF--
44
<?php
5-
if (!function_exits('sodium_crypto_pwhash_str_verify')) {
5+
if (!function_exists('sodium_crypto_pwhash_str_verify')) {
66
echo "skip - No crypto_pwhash_str_verify";
77
}
88
if (!in_array('argon2i', password_algos(), true /* strict */)) {

ext/sodium/tests/php_password_hash_argon2id.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Test interoperability of password_hash('argon2id')
33
--SKIPIF--
44
<?php
5-
if (!function_exits('sodium_crypto_pwhash_str_verify')) {
5+
if (!function_exists('sodium_crypto_pwhash_str_verify')) {
66
echo "skip - No crypto_pwhash_str_verify";
77
}
88
if (!in_array('argon2id', password_algos(), true /* strict */)) {

ext/sodium/tests/php_password_verify.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Test interoperability of password_verify()
33
--SKIPIF--
44
<?php
5-
if (!function_exits('sodium_crypto_pwhash_str')) {
5+
if (!function_exists('sodium_crypto_pwhash_str')) {
66
echo "skip - No crypto_pwhash_str_verify";
77
}
88

0 commit comments

Comments
 (0)