From: Scott MacVicar Date: Wed, 24 Aug 2011 06:50:39 +0000 (+0000) Subject: Fix typo in tests for ldap bug #42060 X-Git-Tag: php-5.4.0beta1~377 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d5385dda5f442f82cba0fb1ccceafb25642ad72;p=php Fix typo in tests for ldap bug #42060 --- 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 --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) );