From cabe506077e16d0870e7dd4aa16c78fe48af4f46 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 16 Jul 2024 09:51:50 +0200 Subject: [PATCH] Fix phpunit --- test/phpunit/LangTest.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/phpunit/LangTest.php b/test/phpunit/LangTest.php index 2acecab4545..7f7872351b4 100644 --- a/test/phpunit/LangTest.php +++ b/test/phpunit/LangTest.php @@ -94,6 +94,9 @@ class LangTest extends CommonClassTest if (! preg_match('/^[a-z]+_[A-Z]+$/', $code)) { continue; } + if (in_array($code, array('mk_MK'))) { // We exclude some language not yet ready + continue; + } $langCodes[$code] = [$code]; } return $langCodes;