1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

selftest: fix use of a non-existent word (existant)

This commit is contained in:
Michael Adam 2012-06-11 17:38:28 +02:00
parent 9995257127
commit 08e9b1774f

View File

@ -125,5 +125,5 @@ class EnvironmentManagerTests(TestCase):
env = self.mgr.setup_env("something", "prefix")
self.assertIs(env, self.mgr.get_running_env("something"))
def test_get_running_env_nonexistant(self):
def test_get_running_env_nonexistent(self):
self.assertIs(None, self.mgr.get_running_env("something"))