diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-02-21 14:37:09 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-02-21 14:37:09 +0000 |
commit | 87bc092d7cac1c1a1fd686d96fa540ddab97622c (patch) | |
tree | a324b282d7038936f87f14c61d091a5235f27b7e /test | |
parent | 4878d749f4997a6c8ec6852e63aa9af5fca62a0b (diff) | |
download | redmine-87bc092d7cac1c1a1fd686d96fa540ddab97622c.tar.gz redmine-87bc092d7cac1c1a1fd686d96fa540ddab97622c.zip |
Removes --find-copies-harder git option to retrieve commits which was way to slow (#4547).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3468 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/repository_git_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/repository_git_test.rb b/test/unit/repository_git_test.rb index 5ebbb00c1..71b3e4da5 100644 --- a/test/unit/repository_git_test.rb +++ b/test/unit/repository_git_test.rb @@ -35,7 +35,7 @@ class RepositoryGitTest < ActiveSupport::TestCase @repository.reload assert_equal 12, @repository.changesets.count - assert_equal 20, @repository.changes.count + assert_equal 21, @repository.changes.count commit = @repository.changesets.find(:first, :order => 'committed_on ASC') assert_equal "Initial import.\nThe repository contains 3 files.", commit.comments |