diff options
author | David Lawrence <dkl@mozilla.com> | 2017-05-22 16:47:27 +0200 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2017-05-22 16:47:27 +0200 |
commit | 44cef9cca23e9dd59ded0039efe1fb4454c2eb57 (patch) | |
tree | 93d301c57f82f9b5eacdaf46c47bcd703f5dfabb /t | |
parent | d7e7c68ec34a994e2b089c5db1986031a6399a9a (diff) | |
download | bugzilla-44cef9cca23e9dd59ded0039efe1fb4454c2eb57.tar.gz bugzilla-44cef9cca23e9dd59ded0039efe1fb4454c2eb57.tar.xz |
Bug 1361151 - Bugzilla Security groups are periodically synced to Phabricator project membership
Diffstat (limited to 't')
-rw-r--r-- | t/Support/Files.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/Support/Files.pm b/t/Support/Files.pm index 1bdf2eac7..603d95cf9 100644 --- a/t/Support/Files.pm +++ b/t/Support/Files.pm @@ -30,7 +30,7 @@ our @extensions = glob('extensions/*'); foreach my $extension (@extensions) { - find(sub { push(@files, $File::Find::name) if $_ =~ /\.pm$/;}, $extension); + find(sub { push(@files, $File::Find::name) if $_ =~ /\.pm$|\.pl$/;}, $extension); } our @test_files = glob('t/*.t xt/*/*.t'); |