summaryrefslogtreecommitdiffstats
path: root/xt/lib/Bugzilla/Test/Search/FieldTest.pm
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-10-02 19:03:12 +0200
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-10-02 19:03:12 +0200
commit204093007aeeb87329fa06c8dd9a4fd8df94a85f (patch)
tree9ca721cd2dd7706b2f71a1528d82e3038194c371 /xt/lib/Bugzilla/Test/Search/FieldTest.pm
parentb96b7a4b70e95918190effa67520c2fbf30cdcab (diff)
downloadbugzilla-204093007aeeb87329fa06c8dd9a4fd8df94a85f.tar.gz
bugzilla-204093007aeeb87329fa06c8dd9a4fd8df94a85f.tar.xz
Bug 601376: Test the __all__, __open__, and __closed__ arguments to
bug_status in xt/search.t r=mkanat, a=mkanat (module owner)
Diffstat (limited to 'xt/lib/Bugzilla/Test/Search/FieldTest.pm')
-rw-r--r--xt/lib/Bugzilla/Test/Search/FieldTest.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/xt/lib/Bugzilla/Test/Search/FieldTest.pm b/xt/lib/Bugzilla/Test/Search/FieldTest.pm
index 98f6275fe..f73facb19 100644
--- a/xt/lib/Bugzilla/Test/Search/FieldTest.pm
+++ b/xt/lib/Bugzilla/Test/Search/FieldTest.pm
@@ -59,7 +59,7 @@ sub field_object { return $_[0]->{field_object} }
# than we need the object.
sub field {
my ($self) = @_;
- return $self->{field_name} ||= $self->field_object->name;
+ $self->{field_name} ||= $self->field_object->name;
return $self->{field_name};
}
# The Bugzilla::Test::Search object that this is a child of.