Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspertey committed Nov 17, 2024
1 parent 9a6fa66 commit d70c630
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/Autoload/CommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

beforeEach(function () {
$this->commands = [
'application:sync' => 'Application\Commands\ApplicationSync',
'invoice:deliver' => 'Domain\Invoicing\Commands\InvoiceDeliver',
'log:prune' => 'Infrastructure\Commands\LogPrune',
'application:sync' => 'Application\Commands\ApplicationSync',
];

$this->setupTestApplication();
Expand Down
4 changes: 2 additions & 2 deletions tests/Autoload/IgnoreTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@

beforeEach(function () {
$this->providers = [
'Domain\Invoicing\Providers\InvoiceServiceProvider',
'Application\Providers\ApplicationServiceProvider',
'Domain\Invoicing\Providers\InvoiceServiceProvider',
'Infrastructure\Providers\InfrastructureServiceProvider',
];

$this->commands = [
'application:sync' => 'Application\Commands\ApplicationSync',
'invoice:deliver' => 'Domain\Invoicing\Commands\InvoiceDeliver',
'log:prune' => 'Infrastructure\Commands\LogPrune',
'application:sync' => 'Application\Commands\ApplicationSync',
];

$this->setupTestApplication();
Expand Down
2 changes: 1 addition & 1 deletion tests/Autoload/ProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

beforeEach(function () {
$this->providers = [
'Domain\Invoicing\Providers\InvoiceServiceProvider',
'Application\Providers\ApplicationServiceProvider',
'Domain\Invoicing\Providers\InvoiceServiceProvider',
'Infrastructure\Providers\InfrastructureServiceProvider',
];

Expand Down

0 comments on commit d70c630

Please sign in to comment.