From: Max Kanat-Alexander Date: Sat, 2 Oct 2010 16:25:53 +0000 (-0700) Subject: Bug 601364: Make search.t *actually* do the basic field=value tests X-Git-Tag: bugzilla-4.1.1~252 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b96b7a4b70e95918190effa67520c2fbf30cdcab;p=thirdparty%2Fbugzilla.git Bug 601364: Make search.t *actually* do the basic field=value tests r=mkanat, a=mkanat (module owner) --- diff --git a/xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm b/xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm index f0f8ed8c4b..b42db08e2b 100644 --- a/xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm +++ b/xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm @@ -42,17 +42,14 @@ sub name { sub search_params { my ($self) = @_; - return $self->{search_params} if $self->{search_params}; - my $field = $self->field; + my $operator = $self->operator; + $field =~ s/\./_/g; my $value = $self->translated_value; - my %params = ( - $field => $value, - "${field}_type" => $self->operator, - ); - - $self->{search_params} = \%params; - return $self->{search_params}; + if ($operator eq 'anyexact') { + $value = [split(',', $value)]; + } + return { $field => $value, "${field}_type" => $self->operator }; } 1; \ No newline at end of file