From 84437b3812d959a7aca7f1af8d6c528d8683607d Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Sat, 12 Oct 2024 17:10:17 +0200 Subject: [PATCH] mvc - rename PHPunit.xml to phpunit.xml so phpunit will pick it up automatically. --- Makefile | 2 +- src/opnsense/mvc/tests/{PHPunit.xml => phpunit.xml} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/opnsense/mvc/tests/{PHPunit.xml => phpunit.xml} (100%) diff --git a/Makefile b/Makefile index c2f3baf43..37188fda1 100644 --- a/Makefile +++ b/Makefile @@ -559,7 +559,7 @@ test: debug exit 1; \ fi @cd ${.CURDIR}/src/opnsense/mvc/tests && \ - phpunit --configuration PHPunit.xml || true; \ + phpunit || true; \ rm -f .phpunit.result.cache checkout: diff --git a/src/opnsense/mvc/tests/PHPunit.xml b/src/opnsense/mvc/tests/phpunit.xml similarity index 100% rename from src/opnsense/mvc/tests/PHPunit.xml rename to src/opnsense/mvc/tests/phpunit.xml