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:
parent
41bf39df36
commit
fc99c1851f
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user