Skip to content

Commit

Permalink
Fixing typo in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesportwoodii committed Aug 28, 2016
1 parent 0e3b3b0 commit 35a74b9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ext/standard/tests/password/password_hash_argon2.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ext/standard/tests/password/password_verify_argon2.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 35a74b9

Please sign in to comment.