Skip to content

Commit

Permalink
make the cli kernel test config mode more obvious
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul M. Jones committed Oct 4, 2014
1 parent 0d5ecc1 commit 969948f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"type": "kernel",
"config": {
"common": "Aura\\Cli_Kernel\\_Config\\Common",
"kernel": "Aura\\Cli_Kernel\\_Config\\Kernel"
"cli-kernel-test": "Aura\\Cli_Kernel\\_Config\\CliKernelTest"
}
},
"branch-alias": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
use Aura\Di\Config;
use Aura\Di\Container;

class Kernel extends Config
class CliKernelTest extends Config
{
public function define(Container $di)
{
Expand Down
2 changes: 1 addition & 1 deletion tests/kernel/src/CliKernelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ protected function console(array $argv = array())
$path = dirname(__DIR__);
$di = (new Factory)->newContainer(
$path,
'kernel',
'cli-kernel-test',
"$path/composer.json",
"$path/vendor/composer/installed.json"
);
Expand Down

0 comments on commit 969948f

Please sign in to comment.