]> granicus.if.org Git - php/commitdiff
Fix typo in tests for ldap bug #42060
authorScott MacVicar <scottmac@php.net>
Wed, 24 Aug 2011 06:50:39 +0000 (06:50 +0000)
committerScott MacVicar <scottmac@php.net>
Wed, 24 Aug 2011 06:50:39 +0000 (06:50 +0000)
ext/ldap/tests/ldap_control_paged_results_variation2.phpt

index 7cc6d9fc92ed312daeb4afa1818aa9e4b2eaae86..fee43fc4d6c642e02fe8f379f23a23adaf44d765 100644 (file)
@@ -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)
 );