From c60bba1fe44c7715e7b4e89fede3eb9427f8cd8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20D=C3=BCsterhus?= Date: Sat, 3 Sep 2022 03:35:32 +0200 Subject: [PATCH] Fix test selection logic in tests/test_files.php (#329) Selecting the `fstools` tests also executed the `htmlt` tests. --- tests/test_files.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_files.php b/tests/test_files.php index d2b86cdb..b1e158f0 100644 --- a/tests/test_files.php +++ b/tests/test_files.php @@ -29,6 +29,7 @@ switch ($AC['type']) { if ($break) break; case 'fstools': $test_dirs[] = 'FSTools'; + if ($break) break; case 'htmlt': $htmlt_dirs[] = 'HTMLPurifier/HTMLT'; if ($break) break;