Skip to content

Commit

Permalink
Fix failing tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Apr 6, 2015
1 parent eb2134d commit c954e75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/TestCase/Shell/CommandListShellTest.php
Expand Up @@ -97,7 +97,7 @@ public function testMain()
$expected = "/\[.*TestPluginTwo.*\] example, welcome/";
$this->assertRegExp($expected, $output);

$expected = "/\[.*CORE.*\] i18n, orm_cache, plugin, server/";
$expected = "/\[.*CORE.*\] i18n, orm_cache, plugin, routes, server/";
$this->assertRegExp($expected, $output);

$expected = "/\[.*app.*\] sample/";
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Shell/CompletionShellTest.php
Expand Up @@ -120,7 +120,7 @@ public function testCommands()
$output = $this->out->output;

$expected = "TestPlugin.example TestPlugin.sample " .
"TestPluginTwo.example TestPluginTwo.welcome i18n orm_cache plugin server sample\n";
"TestPluginTwo.example TestPluginTwo.welcome i18n orm_cache plugin routes server sample\n";
$this->assertTextEquals($expected, $output);
}

Expand Down

0 comments on commit c954e75

Please sign in to comment.