summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-10-07 13:47:22 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-10-07 13:47:22 +0000
commitfa237901b0952022c42c07c53db73586defa2841 (patch)
treebc4023a65301e8c3f77f9a60c0b12cb19746ada2
parent6f13f2b84207f446b17e2030c36bd5d47143ced7 (diff)
downloadredmine-fa237901b0952022c42c07c53db73586defa2841.tar.gz
redmine-fa237901b0952022c42c07c53db73586defa2841.zip
Adjusts test for r10569.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10570 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--test/functional/issues_controller_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb
index 7672a3e75..82160f5f9 100644
--- a/test/functional/issues_controller_test.rb
+++ b/test/functional/issues_controller_test.rb
@@ -283,11 +283,11 @@ class IssuesControllerTest < ActionController::TestCase
assert_select 'tr.group', 3
assert_select 'tr.group' do
assert_select 'a', :text => 'John Smith'
- assert_select 'span.count', :text => '(1)'
+ assert_select 'span.count', :text => '1'
end
assert_select 'tr.group' do
assert_select 'a', :text => 'Dave Lopper'
- assert_select 'span.count', :text => '(2)'
+ assert_select 'span.count', :text => '2'
end
end