From: jocuri%softhome.net <> Date: Tue, 13 Jan 2004 06:52:37 +0000 (+0000) Subject: Bug 216523: t/Support/Files.pm fails to include Bugzilla/Template/Plugin/Bugzilla... X-Git-Tag: bugzilla-2.17.7~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf83c0fa5d2931efae64a2386c263b1efc7072fb;p=thirdparty%2Fbugzilla.git Bug 216523: t/Support/Files.pm fails to include Bugzilla/Template/Plugin/Bugzilla.pm in the file list; patch by zach@zachlipton.com; r=jouni; a=justdave. --- diff --git a/t/Support/Files.pm b/t/Support/Files.pm index e822346d0e..ffadc562c4 100644 --- a/t/Support/Files.pm +++ b/t/Support/Files.pm @@ -35,7 +35,8 @@ package Support::Files; # XXX - this file should really be rewritten to use File::Find or similar $file = '*'; -@files = (glob($file), glob('Bugzilla/*.pm'), glob('Bugzilla/*/*.pm')); +@files = (glob($file), glob('Bugzilla/*.pm'), glob('Bugzilla/*/*.pm'), + glob('Bugzilla/*/*/*.pm')); sub have_pkg { my ($pkg) = @_;