diff options
-rw-r--r-- | t/008filter.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/008filter.t b/t/008filter.t index c0ee3b131..a2f96ae3e 100644 --- a/t/008filter.t +++ b/t/008filter.t @@ -110,7 +110,7 @@ foreach my $path (@Support::Templates::include_paths) { # /g means we execute this loop for every match # /s means we ignore linefeeds in the regexp matches - while ($slurp =~ /\[%(?:-|\+|~)?(.*?)(?:-|\+|~)?%\]/gs) { + while ($slurp =~ /\[%(?:-|\+|~|=)?(.*?)(?:-|\+|~|=)?%\]/gs) { my $directive = $1; my @lineno = ($` =~ m/\n/gs); |