From: Michael Adam Date: Mon, 11 Jun 2012 15:36:38 +0000 (+0200) Subject: ldb:tests: fix use of a non-existent word (existant) X-Git-Tag: samba-4.0.0beta2~220 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ff053de0965f0a66db7da491ca9169ca9d2c2dbf;p=thirdparty%2Fsamba.git ldb:tests: fix use of a non-existent word (existant) --- diff --git a/lib/ldb/tests/python/api.py b/lib/ldb/tests/python/api.py index 97dd020ea5c..7cd8f0364e8 100755 --- a/lib/ldb/tests/python/api.py +++ b/lib/ldb/tests/python/api.py @@ -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())