diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-04-18 17:51:10 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-04-18 17:51:10 +0000 |
commit | fb6b565a1ec968a0f7f9f261ec1d6a328d891209 (patch) | |
tree | fb8d9d959c16bc77be493269408d7c50191f21ca /test/functional/boards_controller_test.rb | |
parent | 42b5c332b2c24c8dcc2581e0cd130ef930959d99 (diff) | |
download | redmine-fb6b565a1ec968a0f7f9f261ec1d6a328d891209.tar.gz redmine-fb6b565a1ec968a0f7f9f261ec1d6a328d891209.zip |
Forum list can be reordered with drag and drop (#12909).
git-svn-id: http://svn.redmine.org/redmine/trunk@15337 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/boards_controller_test.rb')
-rw-r--r-- | test/functional/boards_controller_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/boards_controller_test.rb b/test/functional/boards_controller_test.rb index 904444107..ae336c6b4 100644 --- a/test/functional/boards_controller_test.rb +++ b/test/functional/boards_controller_test.rb @@ -197,7 +197,7 @@ class BoardsControllerTest < ActionController::TestCase def test_update_position @request.session[:user_id] = 2 - put :update, :project_id => 1, :id => 2, :board => { :move_to => 'highest'} + put :update, :project_id => 1, :id => 2, :board => { :position => 1} assert_redirected_to '/projects/ecookbook/settings/boards' board = Board.find(2) assert_equal 1, board.position |