diff --git a/tests/TestCase/Console/ShellDispatcherTest.php b/tests/TestCase/Console/ShellDispatcherTest.php index 7e5567fc2af..2e3fabe5312 100644 --- a/tests/TestCase/Console/ShellDispatcherTest.php +++ b/tests/TestCase/Console/ShellDispatcherTest.php @@ -104,6 +104,7 @@ public function testFindShell() public function testAddShortPluginAlias() { $expected = [ + 'Company' => 'Company/TestPluginThree.company', 'Example' => 'TestPlugin.example' ]; $result = $this->dispatcher->addShortPluginAliases(); @@ -111,6 +112,7 @@ public function testAddShortPluginAlias() ShellDispatcher::alias('Example', 'SomeOther.PluginsShell'); $expected = [ + 'Company' => 'Company/TestPluginThree.company', 'Example' => 'SomeOther.PluginsShell' ]; $result = $this->dispatcher->addShortPluginAliases();