From 367f8452c4e356bd7742ff369204af9869c2bb6a Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Wed, 25 Nov 2020 16:07:56 +0100 Subject: Fix phpt reindentation in tidy script This was missing adjacent SKIPIF/FILE/CLEAN sections. --- scripts/dev/tidy.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/dev/tidy.php b/scripts/dev/tidy.php index 967f83bcb3..c7f6591e2f 100644 --- a/scripts/dev/tidy.php +++ b/scripts/dev/tidy.php @@ -126,9 +126,9 @@ function transformTestCode(string $code, callable $transformer): string { } return preg_replace_callback( - '/(--(?:FILE|SKIPIF|CLEAN)--)(.+?)(--[A-Z_]+--)/s', + '/(--(?:FILE|SKIPIF|CLEAN)--)(.+?)(?=--[A-Z_]+--)/s', function(array $matches) use($transformer) { - return $matches[1] . $transformer($matches[2]) . $matches[3]; + return $matches[1] . $transformer($matches[2]); }, $code ); -- cgit v1.2.1