diff options
author | Michael Adam <obnox@samba.org> | 2012-03-14 01:00:06 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-03-14 21:19:11 +0100 |
commit | 94af1581ef5458438ee883cdec204502e448ddde (patch) | |
tree | 9c81ee101dd2ebec669918df31cb775664fe5281 | |
parent | a85d86129a8ff4e0ca5874fe9a858a81d5627043 (diff) | |
download | samba-94af1581ef5458438ee883cdec204502e448ddde.tar.gz samba-94af1581ef5458438ee883cdec204502e448ddde.tar.bz2 samba-94af1581ef5458438ee883cdec204502e448ddde.zip |
s4:selftest: fix a message-typo in the "samba-tool user" testsuite.
Autobuild-User: Michael Adam <obnox@samba.org>
Autobuild-Date: Wed Mar 14 21:19:11 CET 2012 on sn-devel-104
-rw-r--r-- | source4/scripting/python/samba/tests/samba_tool/user.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/tests/samba_tool/user.py b/source4/scripting/python/samba/tests/samba_tool/user.py index 3861a001df..15d04d60ff 100644 --- a/source4/scripting/python/samba/tests/samba_tool/user.py +++ b/source4/scripting/python/samba/tests/samba_tool/user.py @@ -67,7 +67,7 @@ class UserCmdTestCase(SambaToolCmdTest): # try to add all the users again, this should fail for user in self.users: (result, out, err) = self._create_user(user) - self.assertCmdFail(result, "Ensure that create user files") + self.assertCmdFail(result, "Ensure that create user fails") self.assertIn("LDAP error 68 LDAP_ENTRY_ALREADY_EXISTS", err) # try to delete all the 4 users we just added |