diff options
author | Scott MacVicar <scottmac@php.net> | 2011-08-24 06:50:39 +0000 |
---|---|---|
committer | Scott MacVicar <scottmac@php.net> | 2011-08-24 06:50:39 +0000 |
commit | 3d5385dda5f442f82cba0fb1ccceafb25642ad72 (patch) | |
tree | e89812f07a4b1cc27c68f7adc87ea700b1fc0b27 /ext/ldap | |
parent | ab704eb9f663a4dfea9fe781eb278b71d9a22f83 (diff) | |
download | php-git-3d5385dda5f442f82cba0fb1ccceafb25642ad72.tar.gz |
Fix typo in tests for ldap bug #42060
Diffstat (limited to 'ext/ldap')
-rw-r--r-- | ext/ldap/tests/ldap_control_paged_results_variation2.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/ldap/tests/ldap_control_paged_results_variation2.phpt b/ext/ldap/tests/ldap_control_paged_results_variation2.phpt index 7cc6d9fc92..fee43fc4d6 100644 --- a/ext/ldap/tests/ldap_control_paged_results_variation2.phpt +++ b/ext/ldap/tests/ldap_control_paged_results_variation2.phpt @@ -1,5 +1,5 @@ --TEST-- -ldap_ldap_control_paged_results() test (fetching the first page with a pagesize=2) +ldap_ldap_control_paged_result() test (fetching the first page with a pagesize=2) --CREDITS-- Jean-Sebastien Hedde <jeanseb@au-fil-du.net> --SKIPIF-- @@ -17,7 +17,7 @@ insert_dummy_data($link); $dn = "dc=my-domain,dc=com"; $filter = "(cn=*)"; var_dump( - ldap_control_paged_results($link, 2), + ldap_control_paged_result($link, 2), $result = ldap_search($link, $dn, $filter, array('cn')), ldap_get_entries($link, $result) ); |