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

index 2877092fe31615d96af1d8167334b183215d1006..c37ef83a611f3e891b0b0e06ae66818192a8f094 100644 (file)
@@ -13,8 +13,8 @@ import os, tempfile
 
 class OpenTdbTests(TestCase):
 
-    def test_nonexistant_read(self):
-        self.assertRaises(IOError, tdb.Tdb, "/some/nonexistant/file", 0,
+    def test_nonexistent_read(self):
+        self.assertRaises(IOError, tdb.Tdb, "/some/nonexistent/file", 0,
                 tdb.DEFAULT, os.O_RDWR)
 
 class CloseTdbTests(TestCase):