]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
ldb:tests: fix use of a non-existent word (existant)
authorMichael Adam <obnox@samba.org>
Mon, 11 Jun 2012 15:36:38 +0000 (17:36 +0200)
committerMichael Adam <obnox@samba.org>
Tue, 12 Jun 2012 05:21:42 +0000 (07:21 +0200)
lib/ldb/tests/python/api.py

index 97dd020ea5cb8b14d728bd75df211fac1be15880..7cd8f0364e88969fdacca60dde2e8102cd6f814a 100755 (executable)
@@ -372,7 +372,7 @@ class DnTests(TestCase):
         x = ldb.Dn(self.ldb, "dc=foo16,bar=bloe")
         self.assertEquals("bar=bloe", x.parent().__str__())
 
-    def test_parent_nonexistant(self):
+    def test_parent_nonexistent(self):
         x = ldb.Dn(self.ldb, "@BLA")
         self.assertEquals(None, x.parent())