Skip to content

Commit

Permalink
Cleanup after removing DbConfigTask.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Apr 1, 2014
1 parent 036eb17 commit 8ae917f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/TestCase/Console/Command/CompletionShellTest.php
Expand Up @@ -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);
}

Expand Down Expand Up @@ -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);
}

Expand Down
1 change: 0 additions & 1 deletion tests/TestCase/Console/Command/Task/FixtureTaskTest.php
Expand Up @@ -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();
}

Expand Down
1 change: 0 additions & 1 deletion tests/TestCase/Console/Command/Task/PluginTaskTest.php
Expand Up @@ -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;
Expand Down

0 comments on commit 8ae917f

Please sign in to comment.