Commit 383da1e6 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Fixes functional tests broken by r1501.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1504 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent d446469f
...@@ -38,7 +38,9 @@ class IssuesControllerTest < Test::Unit::TestCase ...@@ -38,7 +38,9 @@ class IssuesControllerTest < Test::Unit::TestCase
:custom_fields, :custom_fields,
:custom_values, :custom_values,
:custom_fields_trackers, :custom_fields_trackers,
:time_entries :time_entries,
:journals,
:journal_details
def setup def setup
@controller = IssuesController.new @controller = IssuesController.new
...@@ -269,7 +271,6 @@ class IssuesControllerTest < Test::Unit::TestCase ...@@ -269,7 +271,6 @@ class IssuesControllerTest < Test::Unit::TestCase
get :reply, :id => 1 get :reply, :id => 1
assert_response :success assert_response :success
assert_select_rjs :show, "update" assert_select_rjs :show, "update"
assert_select_rjs :replace_html, "notes"
end end
def test_reply_to_note def test_reply_to_note
...@@ -277,7 +278,6 @@ class IssuesControllerTest < Test::Unit::TestCase ...@@ -277,7 +278,6 @@ class IssuesControllerTest < Test::Unit::TestCase
get :reply, :id => 1, :journal_id => 2 get :reply, :id => 1, :journal_id => 2
assert_response :success assert_response :success
assert_select_rjs :show, "update" assert_select_rjs :show, "update"
assert_select_rjs :replace_html, "notes"
end end
def test_post_edit def test_post_edit
......
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