Fixing typo in tests

This commit is contained in:
Charles R. Portwood II 2016-08-27 21:57:09 -05:00
parent 0e3b3b031f
commit 35a74b9e4a
4 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
Test normal operation of password_hash() with argon2
--SKIPIF--
<?php
if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_get_info not built with Argon2');
if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_hash not built with Argon2');
--FILE--
<?php

View File

@ -2,7 +2,7 @@
Test error operation of password_hash() with argon2
--SKIPIF--
<?php
if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_get_info not built with Argon2');
if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_hash not built with Argon2');
?>
--FILE--
<?php

View File

@ -2,7 +2,7 @@
Test normal operation of password_needs_rehash() with argon2
--SKIPIF--
<?php
if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_get_info not built with Argon2');
if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_needs_rehash not built with Argon2');
?>
--FILE--
<?php

View File

@ -2,7 +2,7 @@
Test normal operation of password_verify() with argon2
--SKIPIF--
<?php
if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_get_info not built with Argon2');
if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_verify not built with Argon2');
?>
--FILE--
<?php