From d70c6308444970fdcc7ec678cd7fd24521d9a16d Mon Sep 17 00:00:00 2001 From: Jasper Tey Date: Sun, 17 Nov 2024 09:50:49 -0500 Subject: [PATCH] wip --- tests/Autoload/CommandTest.php | 2 +- tests/Autoload/IgnoreTest.php | 4 ++-- tests/Autoload/ProviderTest.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/Autoload/CommandTest.php b/tests/Autoload/CommandTest.php index 3d74782..c66a756 100644 --- a/tests/Autoload/CommandTest.php +++ b/tests/Autoload/CommandTest.php @@ -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(); diff --git a/tests/Autoload/IgnoreTest.php b/tests/Autoload/IgnoreTest.php index f73b508..dbb526e 100644 --- a/tests/Autoload/IgnoreTest.php +++ b/tests/Autoload/IgnoreTest.php @@ -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(); diff --git a/tests/Autoload/ProviderTest.php b/tests/Autoload/ProviderTest.php index 88d6359..8d88649 100644 --- a/tests/Autoload/ProviderTest.php +++ b/tests/Autoload/ProviderTest.php @@ -10,8 +10,8 @@ beforeEach(function () { $this->providers = [ - 'Domain\Invoicing\Providers\InvoiceServiceProvider', 'Application\Providers\ApplicationServiceProvider', + 'Domain\Invoicing\Providers\InvoiceServiceProvider', 'Infrastructure\Providers\InfrastructureServiceProvider', ];