Skip to content

Commit e042c44

Browse files
authored
update testGettingProductCustomFieldsReturnsCollectionOfProductCustomFields() endpoint
remove trailing '/' from endpoint
1 parent ed830bd commit e042c44

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/Unit/Api/ClientTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ public function testGettingProductCustomFieldsReturnsCollectionOfProductCustomFi
449449
{
450450
$this->connection->expects($this->once())
451451
->method('get')
452-
->with($this->basePath . '/products/1/customfields/', false)
452+
->with($this->basePath . '/products/1/customfields', false)
453453
->will($this->returnValue(array(array(), array())));
454454

455455
$collection = Client::getProductCustomFields(1);

0 commit comments

Comments
 (0)