# HG changeset patch # User Marcin Kuzminski # Date 2013-01-23 20:22:08 # Node ID 9f57b5624ec4e336187e3af2ce2aaf5ff5970d4e # Parent c20adbaf16af03347b75d38c98d378b765a52f30 fixes stupid git ci call that can break on systems that don't have this alias diff --git a/rhodecode/tests/scripts/test_vcs_operations.py b/rhodecode/tests/scripts/test_vcs_operations.py --- a/rhodecode/tests/scripts/test_vcs_operations.py +++ b/rhodecode/tests/scripts/test_vcs_operations.py @@ -112,7 +112,7 @@ def _add_files_and_push(vcs, DEST, **kwa i, 'Marcin Kuźminski ', 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 ', added_file ) Command(cwd).execute(cmd)