changeset 5827:c76615e17a27

spelling: committed
author timeless@gmail.com
date Tue, 03 May 2016 05:08:23 +0000
parents 792b6646dc2a
children 243017ebb768
files kallithea/tests/functional/test_files.py kallithea/tests/other/manual_test_vcs_operations.py
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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)
--- 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 ǝɯɐᴎ <me@example.com>'
         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)