# HG changeset patch # User timeless@gmail.com # Date 1462252103 0 # Node ID c76615e17a27d5a55a29c5f6dc28b49384af2d97 # Parent 792b6646dc2adca628f38565f00f85b7e3665f34 spelling: committed diff -r 792b6646dc2a -r c76615e17a27 kallithea/tests/functional/test_files.py --- a/kallithea/tests/functional/test_files.py Tue May 03 05:06:26 2016 +0000 +++ b/kallithea/tests/functional/test_files.py Tue May 03 05:08:23 2016 +0000 @@ -534,7 +534,7 @@ 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 @@ 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 @@ 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 @@ 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 -r 792b6646dc2a -r c76615e17a27 kallithea/tests/other/manual_test_vcs_operations.py --- a/kallithea/tests/other/manual_test_vcs_operations.py Tue May 03 05:06:26 2016 +0000 +++ b/kallithea/tests/other/manual_test_vcs_operations.py Tue May 03 05:08:23 2016 +0000 @@ -114,11 +114,11 @@ 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)