diff options
Diffstat (limited to 'xt/lib/Bugzilla/Test/Search/AndTest.pm')
-rw-r--r-- | xt/lib/Bugzilla/Test/Search/AndTest.pm | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/xt/lib/Bugzilla/Test/Search/AndTest.pm b/xt/lib/Bugzilla/Test/Search/AndTest.pm index f34ba1f3a..6132c0eb6 100644 --- a/xt/lib/Bugzilla/Test/Search/AndTest.pm +++ b/xt/lib/Bugzilla/Test/Search/AndTest.pm @@ -22,13 +22,13 @@ use constant type => 'AND'; # In an AND test, bugs ARE supposed to be contained only if they are contained # by ALL tests. sub bug_is_contained { - my ($self, $number) = @_; - return all { $_->bug_is_contained($number) } $self->field_tests; + my ($self, $number) = @_; + return all { $_->bug_is_contained($number) } $self->field_tests; } sub _bug_will_actually_be_contained { - my ($self, $number) = @_; - return all { $_->will_actually_contain_bug($number) } $self->field_tests; + my ($self, $number) = @_; + return all { $_->will_actually_contain_bug($number) } $self->field_tests; } ############################## @@ -36,17 +36,17 @@ sub _bug_will_actually_be_contained { ############################## sub search_params { - my ($self) = @_; - my @all_params = map { $_->search_params } $self->field_tests; - my %params; - my $chart = 0; - foreach my $item (@all_params) { - $params{"field0-$chart-0"} = $item->{'field0-0-0'}; - $params{"type0-$chart-0"} = $item->{'type0-0-0'}; - $params{"value0-$chart-0"} = $item->{'value0-0-0'}; - $chart++; - } - return \%params; + my ($self) = @_; + my @all_params = map { $_->search_params } $self->field_tests; + my %params; + my $chart = 0; + foreach my $item (@all_params) { + $params{"field0-$chart-0"} = $item->{'field0-0-0'}; + $params{"type0-$chart-0"} = $item->{'type0-0-0'}; + $params{"value0-$chart-0"} = $item->{'value0-0-0'}; + $chart++; + } + return \%params; } 1; |