From 5f771b301dbb813319ed3aecf5a6b72ed034549a Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 7 Apr 2011 09:35:58 +1000 Subject: ldb: fixed --paged option in ldb tools we were sometimes using 'paged_result' and sometimes using 'paged_results'. The latter seemed to be more common, so I changed the two places that used the 'paged_result' string to 'paged_results' --- source4/dsdb/tests/python/ldap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/dsdb/tests') diff --git a/source4/dsdb/tests/python/ldap.py b/source4/dsdb/tests/python/ldap.py index a49dbf0023..4f2044bf76 100755 --- a/source4/dsdb/tests/python/ldap.py +++ b/source4/dsdb/tests/python/ldap.py @@ -2655,7 +2655,7 @@ nTSecurityDescriptor:: """ + desc_base64 """Testing that if we request a control that return a control it really return something""" res = self.ldb.search(attrs=["cn"], - controls=["paged_result:1:10"]) + controls=["paged_results:1:10"]) self.assertEquals(len(res.controls), 1) self.assertEquals(res.controls[0].oid, "1.2.840.113556.1.4.319") try: -- cgit