diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-10-03 23:56:09 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-10-03 23:56:09 +0200 |
commit | 9936d9f1631ef862fed0b7874db751c1be298402 (patch) | |
tree | a1d27e6fcebc57c90d5b5870e97b98de7e73b5b6 | |
parent | 69d45d108aa60aca1099023cf669f489a8331086 (diff) | |
download | bugzilla-9936d9f1631ef862fed0b7874db751c1be298402.tar.gz bugzilla-9936d9f1631ef862fed0b7874db751c1be298402.tar.xz |
Bug 601513: In xt/search.t, assure that "---" continues to work for the
resolution field
r=mkanat, a=mkanat (module owner)
-rw-r--r-- | xt/lib/Bugzilla/Test/Search/Constants.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xt/lib/Bugzilla/Test/Search/Constants.pm b/xt/lib/Bugzilla/Test/Search/Constants.pm index 9eb575017..e001ad6a5 100644 --- a/xt/lib/Bugzilla/Test/Search/Constants.pm +++ b/xt/lib/Bugzilla/Test/Search/Constants.pm @@ -1259,6 +1259,9 @@ use constant SPECIAL_PARAM_TESTS => ( { field => 'bug_status', operator => 'anyexact', value => '__all__', contains => [1,2,3,4,5] }, + { field => 'resolution', operator => 'anyexact', value => '---', + contains => [5] }, + { field => 'assigned_to', operator => 'anyexact', value => '<1>, <2-reporter>', contains => [1,2], extra_params => { emailreporter1 => 1 } }, |