We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9866a0 commit ec407e8Copy full SHA for ec407e8
2 files changed
.circleci/config.yml
@@ -0,0 +1,15 @@
1
+version: 2.1
2
+
3
+orbs:
4
+ ci: bigcommerce/internal@volatile
5
+ php: bigcommerce/internal-php@volatile
6
7
+workflows:
8
+ version: 2
9
+ full:
10
+ jobs:
11
+ - php/phpunit-tests:
12
+ configuration: "phpunit.xml.dist"
13
+ matrix:
14
+ parameters:
15
+ php-version: [ "8.0", "8.1", "8.2" ]
test/Unit/Api/ClientTest.php
@@ -437,7 +437,7 @@ public function testGettingProductImagesReturnsCollectionOfProductImages()
437
{
438
$this->connection->expects($this->once())
439
->method('get')
440
- ->with($this->basePath . '/products/1/images/', false)
+ ->with($this->basePath . '/products/1/images', false)
441
->will($this->returnValue(array(array(), array())));
442
443
$collection = Client::getProductImages(1);
0 commit comments