From 9f520156c795d7419ab10ca0f13064dd2104a32e Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 25 Aug 2021 11:52:01 +0200 Subject: [PATCH] fixed ApplicationTest.php --- community_server/tests/TestCase/ApplicationTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community_server/tests/TestCase/ApplicationTest.php b/community_server/tests/TestCase/ApplicationTest.php index ae57f4742..1d183729d 100644 --- a/community_server/tests/TestCase/ApplicationTest.php +++ b/community_server/tests/TestCase/ApplicationTest.php @@ -39,7 +39,7 @@ class ApplicationTest extends IntegrationTestCase $app->bootstrap(); $plugins = $app->getPlugins(); - $this->assertCount(3, $plugins); + $this->assertCount(2, $plugins); $this->assertSame('Bake', $plugins->get('Bake')->getName()); $this->assertSame('DebugKit', $plugins->get('DebugKit')->getName()); }