code cleanup: rubocop: fix Layout/SpaceAfterColon in test/functional/issues_controller_test.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@18609 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2019-10-07 07:20:50 +00:00
parent a7f046ee7a
commit ff3df17fee
2 changed files with 2 additions and 3 deletions

View File

@@ -356,10 +356,10 @@ class IssuesControllerTest < Redmine::ControllerTest
}
assert_response :success
assert_select 'tr.group span.name', :value => '2018-08-10' do
assert_select '~ span.count', value:'2'
assert_select '~ span.count', :value => '2'
end
assert_select 'tr.group span.name', :value => '(blank)' do
assert_select '~ span.count', value:'1'
assert_select '~ span.count', :value => '1'
end
end