From 0688cf102d2a513875d1832ad0de6052b837a72a Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 11 Jun 2012 17:37:13 +0200 Subject: tdb:tests: fix use of a non-existent word (existant) --- lib/tdb/python/tests/simple.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tdb/python/tests/simple.py b/lib/tdb/python/tests/simple.py index 2877092fe3..c37ef83a61 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): -- cgit