diff options
author | Michael Adam <obnox@samba.org> | 2012-06-11 17:52:57 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-06-12 07:21:45 +0200 |
commit | 2a1ab927932675b5ea3a22628f55f34882f7c682 (patch) | |
tree | cf891dd5afd74989be74e0ce4fd7bcfb5b7bf0ce /source4/scripting/python/samba/tests/hostconfig.py | |
parent | cec6ebf4c33c3bbb9bdb4466f25964c96275e2e0 (diff) | |
download | samba-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.py | 2 |
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") |