diff options
-rw-r--r-- | t/Support/Templates.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/Support/Templates.pm b/t/Support/Templates.pm index 8ae392681..4d19c2cca 100644 --- a/t/Support/Templates.pm +++ b/t/Support/Templates.pm @@ -50,7 +50,7 @@ foreach my $file(@testitems) { my @lines = <FILE>; close (FILE); foreach my $line (@lines) { - if ($line =~ m/\[% INCLUDE (.+?) /) { + if ($line =~ m/\[% (?:INCLUDE|PROCESS) (.+?) /) { my $template = $1; push (@testitems, $template) unless $t{$template}; $t{$template} = 1; |