1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

remove spaces inside {} of QueriesControllerTest

git-svn-id: http://svn.redmine.org/redmine/trunk@20348 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-11-12 12:32:06 +00:00
parent 8e95e56e26
commit 3339dbf3c7

View File

@ -139,25 +139,25 @@ class QueriesControllerTest < Redmine::ControllerTest
def test_new_with_gantt_params def test_new_with_gantt_params
@request.session[:user_id] = 2 @request.session[:user_id] = 2
get :new, :params => { :gantt => 1 } get :new, :params => {:gantt => 1}
assert_response :success assert_response :success
assert_select 'input[type="hidden"]#gantt', 1 assert_select 'input[type="hidden"]#gantt', 1
assert_select 'fieldset#options' assert_select 'fieldset#options'
assert_select 'fieldset#filters' assert_select 'fieldset#filters'
assert_select 'fieldset legend', { :text => 'Sort', :count => 0 } assert_select 'fieldset legend', {:text => 'Sort', :count => 0}
assert_select 'fieldset#columns' assert_select 'fieldset#columns'
end end
def test_new_with_calendar_params def test_new_with_calendar_params
@request.session[:user_id] = 2 @request.session[:user_id] = 2
get :new, :params => { :calendar => 1 } get :new, :params => {:calendar => 1}
assert_response :success assert_response :success
assert_select 'input[type="hidden"]#calendar', 1 assert_select 'input[type="hidden"]#calendar', 1
assert_select 'fieldset#options', :count => 0 assert_select 'fieldset#options', :count => 0
assert_select 'fieldset#filters' assert_select 'fieldset#filters'
assert_select 'fieldset legend', { :text => 'Sort', :count => 0 } assert_select 'fieldset legend', {:text => 'Sort', :count => 0}
assert_select 'fieldset#columns', :count => 0 assert_select 'fieldset#columns', :count => 0
end end
@ -168,7 +168,7 @@ class QueriesControllerTest < Redmine::ControllerTest
assert_select 'fieldset#options' assert_select 'fieldset#options'
assert_select 'fieldset#filters' assert_select 'fieldset#filters'
assert_select 'fieldset legend', { :text => 'Sort' } assert_select 'fieldset legend', {:text => 'Sort'}
assert_select 'fieldset#columns' assert_select 'fieldset#columns'
end end