From: Matthieu Patou Date: Wed, 9 Feb 2011 07:18:02 +0000 (+0300) Subject: pyldb: fix a bug in the unit test which prevented ldb.python to run all the tests... X-Git-Tag: tevent-0.9.11~712 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a7301556d29ce7c2e637380da00a2ee640234fcc;p=thirdparty%2Fsamba.git pyldb: fix a bug in the unit test which prevented ldb.python to run all the tests in the testsuite Autobuild-User: Matthieu Patou Autobuild-Date: Sun Feb 13 00:14:24 CET 2011 on sn-devel-104 --- diff --git a/source4/lib/ldb/tests/python/api.py b/source4/lib/ldb/tests/python/api.py index 016ccc39557..f67515881bd 100755 --- a/source4/lib/ldb/tests/python/api.py +++ b/source4/lib/ldb/tests/python/api.py @@ -631,6 +631,9 @@ class ModuleTests(unittest.TestCase): def search(self, *args, **kwargs): return self.next.search(*args, **kwargs) + def request(self, *args, **kwargs): + pass + name = filename() ldb.register_module(ExampleModule) if os.path.exists(name):