Fixed that issue notes preview is broken by r10547 (#1554).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10585 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2012-10-09 19:11:49 +00:00
parent c4e040fa88
commit 5a02dcf0a9
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -40,8 +40,7 @@ class PreviewsControllerTest < ActionController::TestCase
def test_preview_issue_notes
@request.session[:user_id] = 2
post :issue, :project_id => '1', :id => 1,
:issue => {:description => Issue.find(1).description},
:notes => 'Foo'
:issue => {:description => Issue.find(1).description, :notes => 'Foo'}
assert_response :success
assert_template 'preview'
assert_not_nil assigns(:notes)
@@ -49,7 +48,7 @@ class PreviewsControllerTest < ActionController::TestCase
def test_preview_journal_notes_for_update
@request.session[:user_id] = 2
post :issue, :project_id => '1', :id => 1, :notes => 'Foo'
post :issue, :project_id => '1', :id => 1, :issue => {:notes => 'Foo'}
assert_response :success
assert_template 'preview'
assert_not_nil assigns(:notes)