diff options
author | Go MAEDA <maeda@farend.jp> | 2018-10-29 04:03:52 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2018-10-29 04:03:52 +0000 |
commit | 21034c5628d980bd18c6ef3f3ef898969745c390 (patch) | |
tree | 5ee7f27921cb24cfa7faa25da16523761e445a01 /test/helpers/queries_helper_test.rb | |
parent | a99c7104c16796894dd6485c63a3e5e8b821e5e5 (diff) | |
download | redmine-21034c5628d980bd18c6ef3f3ef898969745c390.tar.gz redmine-21034c5628d980bd18c6ef3f3ef898969745c390.zip |
Filter issues after project status (#20081).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@17607 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/helpers/queries_helper_test.rb')
-rw-r--r-- | test/helpers/queries_helper_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helpers/queries_helper_test.rb b/test/helpers/queries_helper_test.rb index 402d67ab8..8cce2625b 100644 --- a/test/helpers/queries_helper_test.rb +++ b/test/helpers/queries_helper_test.rb @@ -75,7 +75,7 @@ class QueriesHelperTest < Redmine::HelperTest with_locale 'en' do options = filters_options_for_select(IssueQuery.new) assert_select_in options, 'optgroup[label=?]', 'Project', 1 - assert_select_in options, 'optgroup[label=?] > option', 'Project', 2 + assert_select_in options, 'optgroup[label=?] > option', 'Project', 3 assert_select_in options, 'optgroup > option[value=?]', "project.cf_#{cf1.id}", :text => "Project's Foo" end end |