Skip to content

Commit e0e2ecc

Browse files
fix test
AUT-4110 Co-authored-by: Levente Loki <levente.loki@emarsys.com>
1 parent 03934a6 commit e0e2ecc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/unit/Suite/Api/ContactListTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function createContactList_CalledWithBusinessAreaId_PassesBusinessAreaId(
5252
->expects($this->once())
5353
->method('post')
5454
->with(
55-
"api_base_url/$this->customerId/contactlist?business_area_id=$businessAreaId",
55+
"api_base_url/$this->customerId/contactlist/?business_area_id=$businessAreaId",
5656
[
5757
'name' => $this->listName,
5858
'key_id' => 'id',
@@ -135,7 +135,7 @@ public function getContactLists_CalledWithBusinessAreaId_PassesBusinessAreaId():
135135
$this->apiClient
136136
->expects($this->once())
137137
->method('get')
138-
->with("api_base_url/$this->customerId/contactlist?business_area_id=$businessAreaId")
138+
->with("api_base_url/$this->customerId/contactlist/?business_area_id=$businessAreaId")
139139
->willReturn($this->apiSuccess($contactLists));
140140

141141
$this->listService->getContactLists($this->customerId, $businessAreaId);

0 commit comments

Comments
 (0)