From b3ac20826b20384c59e2797c7a56f71a79cfdd44 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 14 Sep 2023 16:12:59 +1000 Subject: [PATCH] Updated translations --- lang/en/texts.php | 2 ++ tests/Feature/ClientPortal/InvoicesTest.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lang/en/texts.php b/lang/en/texts.php index a7f79bf59196..90bc248ee1c1 100644 --- a/lang/en/texts.php +++ b/lang/en/texts.php @@ -5165,6 +5165,8 @@ $LANG = array( 'charity' => 'Charity', 'government' => 'Government', 'in_stock_quantity' => 'Stock quantity', + 'vendor_contact' => 'Vendor Contact', + ); return $LANG; diff --git a/tests/Feature/ClientPortal/InvoicesTest.php b/tests/Feature/ClientPortal/InvoicesTest.php index f95a497b4856..e56d4b76a161 100644 --- a/tests/Feature/ClientPortal/InvoicesTest.php +++ b/tests/Feature/ClientPortal/InvoicesTest.php @@ -106,7 +106,7 @@ class InvoicesTest extends TestCase ->assertSee($paid->number) ->assertDontSee($unpaid->number); - $user->forceDelete(); + $account->delete(); } }