scm: use save instead of scan_comment_for_issue_ids at test_ref_keywords_allow_brackets_around_multiple_issue_numbers of unit changeset test.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6735 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-08-29 12:38:18 +00:00
parent 78260c5522
commit 3516cea1d6
1 changed files with 1 additions and 2 deletions

View File

@ -164,8 +164,7 @@ class ChangesetTest < ActiveSupport::TestCase
:committed_on => Time.now,
:comments => '[#1 #2, #3] Worked on these',
:revision => '12345')
c.scan_comment_for_issue_ids
assert c.save
assert_equal [1,2,3], c.issue_ids.sort
end