Skip to content

Commit

Permalink
Embeddable/ConfigSetsTest updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ecoologic committed Oct 5, 2023
1 parent c897efe commit 7e1a8c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Zendesk/API/UnitTests/Embeddable/ConfigSetsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function testCreate()

$this->assertEndpointCalled(function () use ($params) {
$this->client->embeddable->configSets()->create($params);
}, 'embeddable/api/config_sets.json', 'POST', [
}, 'api/v2/embeddable/api/config_sets.json', 'POST', [
'apiBasePath' => '/',
'postFields' => ['config_set' => $params],
]);
Expand All @@ -40,7 +40,7 @@ public function testUpdate()

$this->assertEndpointCalled(function () use ($params, $id) {
$this->client->embeddable->configSets()->update($id, $params);
}, "embeddable/api/config_sets/{$id}.json", 'PUT', [
}, "api/v2/embeddable/api/config_sets/{$id}.json", 'PUT', [
'apiBasePath' => '/',
'postFields' => ['config_set' => $params],
]);
Expand Down

0 comments on commit 7e1a8c1

Please sign in to comment.