diff --git a/packages/Webkul/Customer/src/Providers/CustomerServiceProvider.php b/packages/Webkul/Customer/src/Providers/CustomerServiceProvider.php index f5cf4c1b4..f12f69d6e 100755 --- a/packages/Webkul/Customer/src/Providers/CustomerServiceProvider.php +++ b/packages/Webkul/Customer/src/Providers/CustomerServiceProvider.php @@ -16,8 +16,6 @@ class CustomerServiceProvider extends ServiceProvider $this->loadTranslationsFrom(__DIR__ . '/../Resources/lang', 'customer'); $this->loadMigrationsFrom(__DIR__ . '/../Database/Migrations'); - - $this->registerEloquentFactoriesFrom(__DIR__ . '/../Database/Factories'); } /** diff --git a/tests/functional/Admin/Sales/InvoiceCest.php b/tests/functional/Admin/Sales/InvoiceCest.php index 7734db70c..b81a66343 100644 --- a/tests/functional/Admin/Sales/InvoiceCest.php +++ b/tests/functional/Admin/Sales/InvoiceCest.php @@ -2,7 +2,6 @@ namespace Tests\Functional\Admin\Sales; - use FunctionalTester; use Webkul\Sales\Models\Invoice; use Webkul\Sales\Models\OrderAddress; @@ -16,7 +15,7 @@ class InvoiceCest $invoice = $I->have(Invoice::class, [ 'order_id' => $orderAddress->order_id, - 'order_address_id' => $orderAddress->id + 'order_address_id' => $orderAddress->id, ]); $I->loginAsAdmin();