# HG changeset patch # User Marcin Kuzminski # Date 1358968928 -3600 # Node ID 801a80ec28e061a608f9f50471cedea82662ab1c # Parent a042ec2fc12f83e2f41e5a01f9d9f6465f5e160d fixes stupid git ci call that can break on systems that don't have this alias diff -r a042ec2fc12f -r 801a80ec28e0 rhodecode/tests/scripts/test_vcs_operations.py --- a/rhodecode/tests/scripts/test_vcs_operations.py Mon Jan 21 23:14:43 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 ', 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)