Skip to content

Commit 35a74b9

Browse files
Fixing typo in tests
1 parent 0e3b3b0 commit 35a74b9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

ext/standard/tests/password/password_hash_argon2.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Test normal operation of password_hash() with argon2
33
--SKIPIF--
44
<?php
5-
if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_get_info not built with Argon2');
5+
if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_hash not built with Argon2');
66
--FILE--
77
<?php
88

ext/standard/tests/password/password_hash_error_argon2.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Test error operation of password_hash() with argon2
33
--SKIPIF--
44
<?php
5-
if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_get_info not built with Argon2');
5+
if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_hash not built with Argon2');
66
?>
77
--FILE--
88
<?php

ext/standard/tests/password/password_needs_rehash_argon2.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Test normal operation of password_needs_rehash() with argon2
33
--SKIPIF--
44
<?php
5-
if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_get_info not built with Argon2');
5+
if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_needs_rehash not built with Argon2');
66
?>
77
--FILE--
88
<?php

ext/standard/tests/password/password_verify_argon2.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Test normal operation of password_verify() with argon2
33
--SKIPIF--
44
<?php
5-
if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_get_info not built with Argon2');
5+
if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_verify not built with Argon2');
66
?>
77
--FILE--
88
<?php

0 commit comments

Comments
 (0)