We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b026e9b commit 519398dCopy full SHA for 519398d
dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductRepositoryInterfaceTest.php
@@ -751,9 +751,9 @@ public function testGetListWithFilteringByWebsite()
751
$this->assertArrayHasKey('search_criteria', $response);
752
$this->assertArrayHasKey('total_count', $response);
753
$this->assertArrayHasKey('items', $response);
754
+ $this->assertTrue(count($response['items']) == 1);
755
$this->assertTrue(isset($response['items'][0]['sku']));
756
$this->assertEquals('simple-2', $response['items'][0]['sku']);
- $this->assertTrue(count($response['items']) == 1);
757
}
758
759
/**
0 commit comments