# HG changeset patch # User Marcin Kuzminski # Date 2013-01-23 19:22:08 # Node ID 801a80ec28e061a608f9f50471cedea82662ab1c # Parent a042ec2fc12f83e2f41e5a01f9d9f6465f5e160d 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)