diff options
author | Veres Lajos <vlajos@gmail.com> | 2013-07-13 13:37:04 +0100 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2013-07-15 00:23:03 -0700 |
commit | e9a95d78ef7c43bc6b6478b9370047d854b20024 (patch) | |
tree | 88ee26fa1c879679a234deb87973a3acd0ff3382 /ext/ldap | |
parent | b79b13b4efbf3374ec7d28286b29928f43da6d1d (diff) | |
download | php-git-e9a95d78ef7c43bc6b6478b9370047d854b20024.tar.gz |
typo fixes
Diffstat (limited to 'ext/ldap')
-rw-r--r-- | ext/ldap/tests/ldap_get_values_len_error.phpt | 2 | ||||
-rw-r--r-- | ext/ldap/tests/ldap_set_rebind_proc_error.phpt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/ldap/tests/ldap_get_values_len_error.phpt b/ext/ldap/tests/ldap_get_values_len_error.phpt index 8caea1479a..45f9031df4 100644 --- a/ext/ldap/tests/ldap_get_values_len_error.phpt +++ b/ext/ldap/tests/ldap_get_values_len_error.phpt @@ -20,7 +20,7 @@ var_dump(ldap_get_values_len($link)); var_dump(ldap_get_values_len($link, $entry)); var_dump(ldap_get_values_len($link, $entry, "weirdAttribute", "Additional data")); -var_dump(ldap_get_values_len($link, $entry, "inexistantAttribute")); +var_dump(ldap_get_values_len($link, $entry, "inexistentAttribute")); ?> ===DONE=== --CLEAN-- diff --git a/ext/ldap/tests/ldap_set_rebind_proc_error.phpt b/ext/ldap/tests/ldap_set_rebind_proc_error.phpt index 966612f652..c8c7985826 100644 --- a/ext/ldap/tests/ldap_set_rebind_proc_error.phpt +++ b/ext/ldap/tests/ldap_set_rebind_proc_error.phpt @@ -35,7 +35,7 @@ function rebind_proc ($ds, $ldap_url) { $link = ldap_connect($host, $port); var_dump(ldap_set_rebind_proc($link)); var_dump(ldap_set_rebind_proc($link, "rebind_proc", "Additional data")); -var_dump(ldap_set_rebind_proc($link, "rebind_proc_inexistant")); +var_dump(ldap_set_rebind_proc($link, "rebind_proc_inexistent")); ?> ===DONE=== --EXPECTF-- @@ -45,6 +45,6 @@ bool(false) Warning: ldap_set_rebind_proc() expects exactly 2 parameters, 3 given in %s on line %d bool(false) -Warning: ldap_set_rebind_proc(): Two arguments expected for 'rebind_proc_inexistant' to be a valid callback in %s on line %d +Warning: ldap_set_rebind_proc(): Two arguments expected for 'rebind_proc_inexistent' to be a valid callback in %s on line %d bool(false) ===DONE=== |