From ec559ff16e814540f7b921be11de5e0739261559 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 17 Jul 2024 09:34:10 +1000 Subject: [PATCH] Minor fixes for tests --- tests/Feature/Export/ArDetailReportTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Feature/Export/ArDetailReportTest.php b/tests/Feature/Export/ArDetailReportTest.php index c623936fb3db..75d6591ed562 100644 --- a/tests/Feature/Export/ArDetailReportTest.php +++ b/tests/Feature/Export/ArDetailReportTest.php @@ -94,7 +94,8 @@ class ArDetailReportTest extends TestCase $settings = CompanySettings::defaults(); $settings->client_online_payment_notification = false; $settings->client_manual_payment_notification = false; - + $settings->currency_id = '1'; + $this->company = Company::factory()->create([ 'account_id' => $this->account->id, 'settings' => $settings,