From 1784d3d3c88a66d58ee4f2756d1ef611ac093439 Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Mon, 5 Jun 2017 21:52:00 -0500 Subject: [PATCH] Fixed failing test due to new shell command --- tests/TestCase/Shell/CompletionShellTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestCase/Shell/CompletionShellTest.php b/tests/TestCase/Shell/CompletionShellTest.php index 816f0b0d155..f42c596be00 100644 --- a/tests/TestCase/Shell/CompletionShellTest.php +++ b/tests/TestCase/Shell/CompletionShellTest.php @@ -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); } @@ -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); }