diff --git a/kallithea/tests/functional/test_files.py b/kallithea/tests/functional/test_files.py --- a/kallithea/tests/functional/test_files.py +++ b/kallithea/tests/functional/test_files.py @@ -534,7 +534,7 @@ removed extra unicode conversion in diff f_path=posixpath.join(location, filename)), params={ 'content': "def py():\n print 'hello world'\n", - 'message': 'i commited', + 'message': 'i committed', '_authentication_token': self.authentication_token(), }, status=302) @@ -608,7 +608,7 @@ removed extra unicode conversion in diff f_path=posixpath.join(location, filename)), params={ 'content': "def py():\n print 'hello world'\n", - 'message': 'i commited', + 'message': 'i committed', '_authentication_token': self.authentication_token(), }, status=302) @@ -681,7 +681,7 @@ removed extra unicode conversion in diff revision=repo.scm_instance.DEFAULT_BRANCH_NAME, f_path=posixpath.join(location, filename)), params={ - 'message': 'i commited', + 'message': 'i committed', '_authentication_token': self.authentication_token(), }, status=302) @@ -754,7 +754,7 @@ removed extra unicode conversion in diff revision=repo.scm_instance.DEFAULT_BRANCH_NAME, f_path=posixpath.join(location, filename)), params={ - 'message': 'i commited', + 'message': 'i committed', '_authentication_token': self.authentication_token(), }, status=302) diff --git a/kallithea/tests/other/manual_test_vcs_operations.py b/kallithea/tests/other/manual_test_vcs_operations.py --- a/kallithea/tests/other/manual_test_vcs_operations.py +++ b/kallithea/tests/other/manual_test_vcs_operations.py @@ -114,11 +114,11 @@ def _add_files_and_push(vcs, DEST, **kwa Command(cwd).execute(cmd) author_str = 'User ǝɯɐᴎ ' if vcs == 'hg': - cmd = """hg commit -m 'commited new %s' -u '%s' %s """ % ( + cmd = """hg commit -m 'committed new %s' -u '%s' %s """ % ( i, author_str, added_file ) elif vcs == 'git': - cmd = """EMAIL="me@example.com" git commit -m 'commited new %s' --author '%s' %s """ % ( + cmd = """EMAIL="me@example.com" git commit -m 'committed new %s' --author '%s' %s """ % ( i, author_str, added_file ) Command(cwd).execute(cmd)