summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/tests/python/api.py
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/ldb/tests/python/api.py')
-rwxr-xr-xsource4/lib/ldb/tests/python/api.py2
1 files changed, 1 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"))