From c630ef4850a2b4cf4dac0f43cae4d2cc2e8c6a81 Mon Sep 17 00:00:00 2001 From: mscherer Date: Fri, 26 Dec 2025 23:44:43 +0100 Subject: [PATCH] Fix EntryCommandTest for updated console help format The console help output format changed from "Available Commands" to category-based grouping like "migrations:". Updated test assertion to match the new format. --- tests/TestCase/Command/EntryCommandTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase/Command/EntryCommandTest.php b/tests/TestCase/Command/EntryCommandTest.php index aa12d35ff..7e0bcf567 100644 --- a/tests/TestCase/Command/EntryCommandTest.php +++ b/tests/TestCase/Command/EntryCommandTest.php @@ -41,7 +41,7 @@ public function testExecuteHelp() $this->exec('migrations --help'); $this->assertExitSuccess(); - $this->assertOutputContains('Available Commands'); + $this->assertOutputContains('migrations:'); $this->assertOutputContains('migrations migrate'); $this->assertOutputContains('migrations status'); $this->assertOutputContains('migrations rollback');