diff --git a/tests/feature/MasterDataPatchTest.php b/tests/feature/MasterDataPatchTest.php index 167ffed..0dd1bef 100644 --- a/tests/feature/MasterDataPatchTest.php +++ b/tests/feature/MasterDataPatchTest.php @@ -162,7 +162,7 @@ class MasterDataPatchTest extends CIUnitTestCase ->withBodyFormat('json') ->call('patch', "api/organization/account/{$id}", ['AccountName' => 'Updated account']); - $patch->assertStatus(201); + $patch->assertStatus(200); $show = $this->withHeaders($this->authHeaders())->call('get', "api/organization/account/{$id}"); $show->assertStatus(200); $showData = json_decode($show->getJSON(), true)['data'];