summaryrefslogtreecommitdiffstats
path: root/test/functional/boards_controller_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2013-10-26 08:08:45 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2013-10-26 08:08:45 +0000
commite162f87964bd2f9721c415b2feb5a228e85644b6 (patch)
tree8bae8bfbdb03f34b4b1228512b6e2b973e873795 /test/functional/boards_controller_test.rb
parent711982b7b316ae3ff79ac5cf4d3d4525869d13c6 (diff)
downloadredmine-e162f87964bd2f9721c415b2feb5a228e85644b6.tar.gz
redmine-e162f87964bd2f9721c415b2feb5a228e85644b6.zip
Replaces <option value=""></option> which is not HTML5 valid (#15191).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12237 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/boards_controller_test.rb')
-rw-r--r--test/functional/boards_controller_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/boards_controller_test.rb b/test/functional/boards_controller_test.rb
index 910f16e9a..6b07b900c 100644
--- a/test/functional/boards_controller_test.rb
+++ b/test/functional/boards_controller_test.rb
@@ -117,7 +117,7 @@ class BoardsControllerTest < ActionController::TestCase
assert_select 'select[name=?]', 'board[parent_id]' do
assert_select 'option', (Project.find(1).boards.size + 1)
- assert_select 'option[value=]', :text => ''
+ assert_select 'option[value=]', :text => '&nbsp;'
assert_select 'option[value=1]', :text => 'Help'
end
end