summaryrefslogtreecommitdiffstats
path: root/test/functional
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2016-09-01 05:44:50 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2016-09-01 05:44:50 +0000
commitceeca4a88d809d5cc01a8ccf41833a678bf7a15d (patch)
tree45142ab9953dbbcd0e0f53016b025a50f88ef1ac /test/functional
parent690845f60102c6ce355c23b9807d27c260932613 (diff)
downloadredmine-ceeca4a88d809d5cc01a8ccf41833a678bf7a15d.tar.gz
redmine-ceeca4a88d809d5cc01a8ccf41833a678bf7a15d.zip
3.3-stable: fix test failure (#23700)
git-svn-id: http://svn.redmine.org/redmine/branches/3.3-stable@15793 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r--test/functional/wiki_controller_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wiki_controller_test.rb b/test/functional/wiki_controller_test.rb
index 8012f97a9..14f9c2760 100644
--- a/test/functional/wiki_controller_test.rb
+++ b/test/functional/wiki_controller_test.rb
@@ -227,7 +227,7 @@ class WikiControllerTest < ActionController::TestCase
Role.find(1).remove_permission!(:protect_wiki_pages)
@request.session[:user_id] = 2
- post :new, :params => {:project_id => 'ecookbook', :title => 'Sidebar'}
+ post :new, :project_id => 'ecookbook', :title => 'Sidebar'
assert_response :success
assert_select_error /Title/
end