Skip to content

Commit

Permalink
Fixed tests expecting integration shell
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyharris committed Jun 23, 2017
1 parent a8d7e08 commit 0969e51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/TestCase/Shell/CommandListShellTest.php
Expand Up @@ -82,7 +82,7 @@ public function testMain()
$expected = "/\[.*CORE.*\] cache, i18n, orm_cache, plugin, routes, server/";
$this->assertRegExp($expected, $output);

$expected = "/\[.*app.*\] i18m, sample/";
$expected = "/\[.*app.*\] i18m, integration, sample/";
$this->assertRegExp($expected, $output);
}

Expand All @@ -103,7 +103,7 @@ public function testMainAppPriority()
$expected = "/\[.*CORE.*\] cache, orm_cache, plugin, routes, server/";
$this->assertRegExp($expected, $output);

$expected = "/\[.*app.*\] i18n, sample/";
$expected = "/\[.*app.*\] i18n, integration, sample/";
$this->assertRegExp($expected, $output);
}

Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Shell/CompletionShellTest.php
Expand Up @@ -117,7 +117,7 @@ public function testCommands()
$output = $this->out->output;

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

Expand Down

0 comments on commit 0969e51

Please sign in to comment.