From: JINMEI Tatuya Date: Tue, 26 Feb 2013 04:35:06 +0000 (-0800) Subject: [2713] style/editorial cleanups: folded a long line, fixed typo X-Git-Tag: bind10-1.1.0beta1-release~68^2~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=54cbca7f405db2241d18cd93c63624d573eefb4a;p=thirdparty%2Fkea.git [2713] style/editorial cleanups: folded a long line, fixed typo --- diff --git a/src/bin/usermgr/tests/b10-cmdctl-usermgr_test.py b/src/bin/usermgr/tests/b10-cmdctl-usermgr_test.py index 145d897a86..58d03e29eb 100644 --- a/src/bin/usermgr/tests/b10-cmdctl-usermgr_test.py +++ b/src/bin/usermgr/tests/b10-cmdctl-usermgr_test.py @@ -72,14 +72,15 @@ class TestUserMgr(unittest.TestCase): sha1((expected_pass + entry_salt).encode()).hexdigest() self.assertEqual(expected_hash, entry_hash) - def run_check(self, expected_returncode, expected_stdout, expected_stderr, command): + def run_check(self, expected_returncode, expected_stdout, expected_stderr, + command): """ Runs the given command, and checks return code, and outputs (if provided). Arguments: expected_returncode, return code of the command - expected_stdout, (multiline) string that is checked agains stdout. + expected_stdout, (multiline) string that is checked against stdout. May be None, in which case the check is skipped. - expected_stderr, (multiline) string that is checked agains stderr. + expected_stderr, (multiline) string that is checked against stderr. May be None, in which case the check is skipped. """ (returncode, stdout, stderr) = run(command)