]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2713] style/editorial cleanups: folded a long line, fixed typo
authorJINMEI Tatuya <jinmei@isc.org>
Tue, 26 Feb 2013 04:35:06 +0000 (20:35 -0800)
committerJINMEI Tatuya <jinmei@isc.org>
Tue, 26 Feb 2013 04:35:06 +0000 (20:35 -0800)
src/bin/usermgr/tests/b10-cmdctl-usermgr_test.py

index 145d897a86e46b1af1ff52dddddfc856f1a9bf97..58d03e29eba789d6159cd74097e8f838186e6f33 100644 (file)
@@ -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)