diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-06-07 15:14:42 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-06-07 15:14:42 +0000 |
commit | 383da1e6d610c9738aa3ed76db5c68de0dfcea5c (patch) | |
tree | c15fddfd037be3259668e8c6b42fef9b16144618 | |
parent | d446469f5d2d7c50911465c681ab7a469a2f9b24 (diff) | |
download | redmine-383da1e6d610c9738aa3ed76db5c68de0dfcea5c.tar.gz redmine-383da1e6d610c9738aa3ed76db5c68de0dfcea5c.zip |
Fixes functional tests broken by r1501.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1504 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/functional/issues_controller_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 7c7d44e5f..582c27d9b 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -38,7 +38,9 @@ class IssuesControllerTest < Test::Unit::TestCase :custom_fields, :custom_values, :custom_fields_trackers, - :time_entries + :time_entries, + :journals, + :journal_details def setup @controller = IssuesController.new @@ -269,7 +271,6 @@ class IssuesControllerTest < Test::Unit::TestCase get :reply, :id => 1 assert_response :success assert_select_rjs :show, "update" - assert_select_rjs :replace_html, "notes" end def test_reply_to_note @@ -277,7 +278,6 @@ class IssuesControllerTest < Test::Unit::TestCase get :reply, :id => 1, :journal_id => 2 assert_response :success assert_select_rjs :show, "update" - assert_select_rjs :replace_html, "notes" end def test_post_edit |