diff --git a/tests/TestCase/Console/Command/CompletionShellTest.php b/tests/TestCase/Console/Command/CompletionShellTest.php index 31bee1b37a3..b3ec6df864d 100644 --- a/tests/TestCase/Console/Command/CompletionShellTest.php +++ b/tests/TestCase/Console/Command/CompletionShellTest.php @@ -164,7 +164,7 @@ public function testSubCommandsCorePlugin() { $this->Shell->runCommand('subCommands', array('subCommands', 'CORE.bake')); $output = $this->Shell->stdout->output; - $expected = "controller db_config fixture model plugin project test view\n"; + $expected = "controller fixture model plugin project test view\n"; $this->assertEquals($expected, $output); } @@ -229,7 +229,7 @@ public function testSubCommands() { $this->Shell->runCommand('subCommands', array('subCommands', 'bake')); $output = $this->Shell->stdout->output; - $expected = "controller db_config fixture model plugin project test view\n"; + $expected = "controller fixture model plugin project test view\n"; $this->assertEquals($expected, $output); } diff --git a/tests/TestCase/Console/Command/Task/FixtureTaskTest.php b/tests/TestCase/Console/Command/Task/FixtureTaskTest.php index 8d84cefe7b3..cc6a6489ff0 100644 --- a/tests/TestCase/Console/Command/Task/FixtureTaskTest.php +++ b/tests/TestCase/Console/Command/Task/FixtureTaskTest.php @@ -54,7 +54,6 @@ public function setUp() { array($out, $out, $in) ); $this->Task->Template = new TemplateTask($out, $out, $in); - $this->Task->DbConfig = $this->getMock('Cake\Console\Command\Task\DbConfigTask', array(), array($out, $out, $in)); $this->Task->Template->initialize(); } diff --git a/tests/TestCase/Console/Command/Task/PluginTaskTest.php b/tests/TestCase/Console/Command/Task/PluginTaskTest.php index 2190a020846..b1b18846cc4 100644 --- a/tests/TestCase/Console/Command/Task/PluginTaskTest.php +++ b/tests/TestCase/Console/Command/Task/PluginTaskTest.php @@ -14,7 +14,6 @@ */ namespace Cake\Test\TestCase\Console\Command\Task; -use Cake\Console\Command\Task\DbConfigTask; use Cake\Console\Command\Task\TemplateTask; use Cake\Core\App; use Cake\Core\Configure;