diff options
author | jocuri%softhome.net <> | 2004-01-13 07:52:37 +0100 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-01-13 07:52:37 +0100 |
commit | bf83c0fa5d2931efae64a2386c263b1efc7072fb (patch) | |
tree | 6147c3d16c71f413548d672946b72eb7df3fa6e1 /t | |
parent | 637b35d05add84f71adcf7d0d3cb060b1c3e7349 (diff) | |
download | bugzilla-bf83c0fa5d2931efae64a2386c263b1efc7072fb.tar.gz bugzilla-bf83c0fa5d2931efae64a2386c263b1efc7072fb.tar.xz |
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.
Diffstat (limited to 't')
-rw-r--r-- | t/Support/Files.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/Support/Files.pm b/t/Support/Files.pm index e822346d0..ffadc562c 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) = @_; |