diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-11-23 21:39:34 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-11-23 23:20:38 +0100 |
commit | df70a4a3b7886660dceab8ec9646ae449098851a (patch) | |
tree | 3f61569931db8438fb2199db0258da05cf881f11 /source4 | |
parent | 90aa16122ec8c2332011e0a25ede7df7b0850a1e (diff) | |
download | samba-df70a4a3b7886660dceab8ec9646ae449098851a.tar.gz samba-df70a4a3b7886660dceab8ec9646ae449098851a.tar.bz2 samba-df70a4a3b7886660dceab8ec9646ae449098851a.zip |
pyldb: Fix broken test.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Tue Nov 23 23:20:38 CET 2010 on sn-devel-104
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/lib/ldb/tests/python/api.py | 2 | ||||
-rw-r--r-- | source4/lib/ldb/wscript | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/source4/lib/ldb/tests/python/api.py b/source4/lib/ldb/tests/python/api.py index 31d1319631..d9c9023b93 100755 --- a/source4/lib/ldb/tests/python/api.py +++ b/source4/lib/ldb/tests/python/api.py @@ -220,7 +220,7 @@ class SimpleLdb(unittest.TestCase): l.modify(m) rm = l.search(m.dn)[0] self.assertEquals(1, len(rm)) - rm = l.search(m.dn, attrs=["bla"])[0] + rm = l.search(m.dn, attrs=["bla"]) self.assertEquals(0, len(rm)) finally: l.delete(ldb.Dn(l, "dc=modifydelete")) diff --git a/source4/lib/ldb/wscript b/source4/lib/ldb/wscript index 4e6fc34d64..c98f20dde1 100644 --- a/source4/lib/ldb/wscript +++ b/source4/lib/ldb/wscript @@ -229,6 +229,7 @@ def test(ctx): cmd = 'tests/test-tdb.sh' ret = samba_utils.RUN_COMMAND(cmd) print("testsuite returned %d" % ret) + # FIXME: Run python testsuite sys.exit(ret) def dist(): |