From b4956d38f7ec43e718244bc0612783cf0ec7e88c Mon Sep 17 00:00:00 2001 From: harshjagad20 Date: Tue, 1 Jun 2021 16:33:07 +0530 Subject: [PATCH] Minor fix taxtype test --- tests/Feature/TaxTypeTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Feature/TaxTypeTest.php b/tests/Feature/TaxTypeTest.php index e587b0dd..001a3a05 100644 --- a/tests/Feature/TaxTypeTest.php +++ b/tests/Feature/TaxTypeTest.php @@ -99,7 +99,8 @@ test('create negative tax type', function () { 'percent' => -9.99 ]); - postJson('api/v1/tax-types', $taxType)->assertOk(); + postJson('api/v1/tax-types', $taxType) + ->assertOk(); $this->assertDatabaseHas('tax_types', $taxType); });