From 9806f2202b001dfc432fd92e7a010a7278affdeb Mon Sep 17 00:00:00 2001 From: Malamalca Date: Sun, 6 Oct 2024 08:51:52 +0200 Subject: [PATCH] Jquery Fixes --- composer.lock | 2 +- tests/TestCase/ApplicationTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.lock b/composer.lock index 955ca6e..d425c00 100644 --- a/composer.lock +++ b/composer.lock @@ -6390,5 +6390,5 @@ "php": ">=8.0" }, "platform-dev": [], - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.2.0" } diff --git a/tests/TestCase/ApplicationTest.php b/tests/TestCase/ApplicationTest.php index 7d62276..00f5a8c 100644 --- a/tests/TestCase/ApplicationTest.php +++ b/tests/TestCase/ApplicationTest.php @@ -36,7 +36,7 @@ public function testBootstrap() $app->bootstrap(); $plugins = $app->getPlugins(); - $this->assertCount(3, $plugins); + $this->assertCount(4, $plugins); $this->assertSame('Bake', $plugins->get('Bake')->getName()); $this->assertSame('Migrations', $plugins->get('Migrations')->getName()); $this->assertSame('DebugKit', $plugins->get('DebugKit')->getName());