summaryrefslogtreecommitdiffstats
path: root/xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2011-03-01 14:04:07 +0100
committerMax Kanat-Alexander <mkanat@bugzilla.org>2011-03-01 14:04:07 +0100
commit5137b07bae62f27dbacee3fbd82a529df1ee8b46 (patch)
treea9bc127a6068482ac8a12d0cbbdfdb352f399ca4 /xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm
parentc1dcf3b12df00659121bcfb7718297f2a578661f (diff)
downloadbugzilla-5137b07bae62f27dbacee3fbd82a529df1ee8b46.tar.gz
bugzilla-5137b07bae62f27dbacee3fbd82a529df1ee8b46.tar.xz
Bug 490322: Fix every single keywords, multi_select, and see_also field/operator
combination in Search.pm. r=mkanat, a=mkanat (module owner)
Diffstat (limited to 'xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm')
-rw-r--r--xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm b/xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm
index 1262e19fb..b891c1587 100644
--- a/xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm
+++ b/xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm
@@ -64,7 +64,7 @@ sub search_params {
my $operator = $self->operator;
my $value = $self->translated_value;
if ($operator eq 'anyexact') {
- $value = [split(',', $value)];
+ $value = [split ',', $value];
}
if (my $ch_param = CH_OPERATOR->{$operator}) {