summaryrefslogtreecommitdiffstats
path: root/source4/scripting/python/samba/tests/hostconfig.py
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2012-06-11 17:52:57 +0200
committerMichael Adam <obnox@samba.org>2012-06-12 07:21:45 +0200
commit2a1ab927932675b5ea3a22628f55f34882f7c682 (patch)
treecf891dd5afd74989be74e0ce4fd7bcfb5b7bf0ce /source4/scripting/python/samba/tests/hostconfig.py
parentcec6ebf4c33c3bbb9bdb4466f25964c96275e2e0 (diff)
downloadsamba-2a1ab927932675b5ea3a22628f55f34882f7c682.tar.gz
samba-2a1ab927932675b5ea3a22628f55f34882f7c682.tar.xz
samba-2a1ab927932675b5ea3a22628f55f34882f7c682.zip
s4:tests: fix use of a non-existent word (existant)
Diffstat (limited to 'source4/scripting/python/samba/tests/hostconfig.py')
-rw-r--r--source4/scripting/python/samba/tests/hostconfig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/tests/hostconfig.py b/source4/scripting/python/samba/tests/hostconfig.py
index 8f42a2b6529..85cb1df0c15 100644
--- a/source4/scripting/python/samba/tests/hostconfig.py
+++ b/source4/scripting/python/samba/tests/hostconfig.py
@@ -63,7 +63,7 @@ class ShareTests(TestCase):
shares = self._get_shares({"global": {}})
self.assertEquals(0, len(shares))
- def test_getitem_nonexistant(self):
+ def test_getitem_nonexistent(self):
shares = self._get_shares({"global": {}})
self.assertRaises(KeyError, shares.__getitem__, "bla")