Commit 1ab77ee0 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Fixes a test failure due to a default custom field value.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3509 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 551993d3
......@@ -534,13 +534,11 @@ class IssueTest < ActiveSupport::TestCase
def test_saving_twice_should_not_duplicate_journal_details
i = Issue.find(:first)
i.init_journal(User.find(2), 'Some notes')
# 2 changes
# initial changes
i.subject = 'New subject'
i.done_ratio = i.done_ratio + 10
assert_difference 'Journal.count' do
assert_difference 'JournalDetail.count', 2 do
assert i.save
end
assert i.save
end
# 1 more change
i.priority = IssuePriority.find(:first, :conditions => ["id <> ?", i.priority_id])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment