From ff053de0965f0a66db7da491ca9169ca9d2c2dbf Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 11 Jun 2012 17:36:38 +0200 Subject: ldb:tests: fix use of a non-existent word (existant) --- lib/ldb/tests/python/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/ldb/tests') diff --git a/lib/ldb/tests/python/api.py b/lib/ldb/tests/python/api.py index 97dd020ea5..7cd8f0364e 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()) -- cgit