changeset 3199:9f57b5624ec4 beta

fixes stupid git ci call that can break on systems that don't have this alias
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 23 Jan 2013 20:22:08 +0100
parents c20adbaf16af
children 89931a504fcf
files rhodecode/tests/scripts/test_vcs_operations.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/tests/scripts/test_vcs_operations.py	Tue Jan 22 23:44:38 2013 +0100
+++ b/rhodecode/tests/scripts/test_vcs_operations.py	Wed Jan 23 20:22:08 2013 +0100
@@ -112,7 +112,7 @@
                 i, 'Marcin Kuźminski <marcin@python-blog.com>', added_file
             )
         elif vcs == 'git':
-            cmd = """git ci -m 'commited new %s' --author '%s' %s """ % (
+            cmd = """git commit -m 'commited new %s' --author '%s' %s """ % (
                 i, 'Marcin Kuźminski <marcin@python-blog.com>', added_file
             )
         Command(cwd).execute(cmd)