From: Michael Adam Date: Mon, 11 Jun 2012 15:37:13 +0000 (+0200) Subject: tdb:tests: fix use of a non-existent word (existant) X-Git-Tag: samba-4.0.0beta2~219 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0688cf102d2a513875d1832ad0de6052b837a72a;p=thirdparty%2Fsamba.git tdb:tests: fix use of a non-existent word (existant) --- diff --git a/lib/tdb/python/tests/simple.py b/lib/tdb/python/tests/simple.py index 2877092fe31..c37ef83a611 100644 --- a/lib/tdb/python/tests/simple.py +++ b/lib/tdb/python/tests/simple.py @@ -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):