diff options
author | Etienne Massip <etienne.massip@gmail.com> | 2011-10-13 06:42:08 +0000 |
---|---|---|
committer | Etienne Massip <etienne.massip@gmail.com> | 2011-10-13 06:42:08 +0000 |
commit | 78a875784620eb6eecddacce8f9fdc7742cc1f09 (patch) | |
tree | b8594b34e58eca41d3cbd2e0d26af8301e2fe48a /test/functional/issues_controller_test.rb | |
parent | 0a67ae2ddbfa7141465bbd1bf234a101faa96a68 (diff) | |
download | redmine-78a875784620eb6eecddacce8f9fdc7742cc1f09.tar.gz redmine-78a875784620eb6eecddacce8f9fdc7742cc1f09.zip |
Restored valid test part removed with r7625 (#8371).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7627 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/issues_controller_test.rb')
-rw-r--r-- | test/functional/issues_controller_test.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 533930aaf..a0ce7914c 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -160,6 +160,9 @@ class IssuesControllerTest < ActionController::TestCase 'o' => { :op => '=', :values => ['o'] }, '~This is part of a subject' => { :op => '~', :values => ['This is part of a subject'] }, '!~This is part of a subject' => { :op => '!~', :values => ['This is part of a subject'] }}, + 'tracker_id' => { + '3' => { :op => '=', :values => ['3'] }, + '=3' => { :op => '=', :values => ['3'] }}, 'start_date' => { '2011-10-12' => { :op => '=', :values => ['2011-10-12'] }, '=2011-10-12' => { :op => '=', :values => ['2011-10-12'] }, |