From 9f384af12506a10a76509815bd776067d7e828ac Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 12 Sep 2023 21:19:30 +1000 Subject: [PATCH] Fixes for tests --- tests/Feature/QuoteTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/QuoteTest.php b/tests/Feature/QuoteTest.php index 57ebde27b3e6..35605558207c 100644 --- a/tests/Feature/QuoteTest.php +++ b/tests/Feature/QuoteTest.php @@ -171,7 +171,7 @@ class QuoteTest extends TestCase $project = Project::find($this->decodePrimaryKey($res['data'][0]['project_id'])); - $this->assertEquals($project->name, ctrans('texts.quote_number_short') . " " . $this->quote->number."[{$this->quote->client->present()->name()}]"); + $this->assertEquals($project->name, ctrans('texts.quote_number_short') . " " . $this->quote->number." [{$this->quote->client->present()->name()}]"); } public function testQuoteList()