From fa3e78054d67237f1092805c6d5f35bd7a8ca52d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Tue, 28 Mar 2023 12:10:00 +0200 Subject: [PATCH 1/2] Rename WebsiteTest.class.php to WebsiteTest.php --- test/phpunit/{WebsiteTest.class.php => WebsiteTest.php} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename test/phpunit/{WebsiteTest.class.php => WebsiteTest.php} (100%) diff --git a/test/phpunit/WebsiteTest.class.php b/test/phpunit/WebsiteTest.php similarity index 100% rename from test/phpunit/WebsiteTest.class.php rename to test/phpunit/WebsiteTest.php From 2c75dd80269c898b3c4befb490b1a71535a320e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Tue, 28 Mar 2023 12:43:45 +0200 Subject: [PATCH 2/2] Update AllTests.php --- test/phpunit/AllTests.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/phpunit/AllTests.php b/test/phpunit/AllTests.php index 2c492da6aee..21c5c0f3658 100644 --- a/test/phpunit/AllTests.php +++ b/test/phpunit/AllTests.php @@ -273,7 +273,7 @@ class AllTests // Website require_once dirname(__FILE__).'/WebsiteTest.php'; - $suite->addTestSuite('Website'); + $suite->addTestSuite('WebsiteTest'); return $suite; }