1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-24 01:11:12 +00:00

Fix text failing on some rubies/sql drivers because of improper length in Change#action (#13487).

git-svn-id: http://svn.redmine.org/redmine/trunk@13352 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Baptiste Barth 2014-08-26 17:15:55 +00:00
parent 41bf39df36
commit fc99c1851f

View File

@ -409,8 +409,8 @@ class RepositoryTest < ActiveSupport::TestCase
:revision => 101,
:comments => 'Another commit by foo.'
)
Change.create!(:changeset => set, :action => 'create', :path => '/path/to/file1')
Change.create!(:changeset => set, :action => 'create', :path => '/path/to/file2')
Change.create!(:changeset => set, :action => 'A', :path => '/path/to/file1')
Change.create!(:changeset => set, :action => 'A', :path => '/path/to/file2')
expected = {"dlopper"=>{:commits_count=>11, :changes_count=>5}}
assert_equal expected, repository.stats_by_author
end