Skip to content

Commit

Permalink
Fixed failing test due to new shell command
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyharris committed Jun 23, 2017
1 parent ac5e4cd commit 1784d3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestCase/Shell/CompletionShellTest.php
Expand Up @@ -200,7 +200,7 @@ public function testSubCommandsAppPlugin()
$this->Shell->runCommand(['subcommands', 'app.sample']);
$output = $this->out->output;

$expected = "derp load returnValue sample withAbort\n";
$expected = "bridge derp load returnValue sample withAbort\n";
$this->assertTextEquals($expected, $output);
}

Expand Down Expand Up @@ -258,7 +258,7 @@ public function testSubCommandsAppDuplicatePluginNoDot()
$this->Shell->runCommand(['subcommands', 'sample']);
$output = $this->out->output;

$expected = "derp load returnValue sample withAbort\n";
$expected = "bridge derp load returnValue sample withAbort\n";
$this->assertTextEquals($expected, $output);
}

Expand Down

0 comments on commit 1784d3d

Please sign in to comment.