Skip to content

Commit

Permalink
magento/adobe-stock-integration#1724: Support batches processing for …
Browse files Browse the repository at this point in the history
…synchronization queue messages - fixed failed integration test
  • Loading branch information
yolouiese committed Aug 27, 2020
1 parent 561c849 commit a36a924
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public function filesProvider(): array
public function getCategoryIdentities()
{
$categoryId = 28767;
return $contentIdentity = [
return [
'entityType' => 'catalog_category',
'field' => 'description',
'entityId' => $categoryId
Expand All @@ -124,7 +124,7 @@ public function getCategoryIdentities()
public function getProductIdentities()
{
$productId = 1567;
return $contentIdentity = [
return [
'entityType' => 'catalog_product',
'field' => 'description',
'entityId' => $productId
Expand All @@ -137,7 +137,7 @@ public function getProductIdentities()
public function getCmsPageIdentities()
{
$pageId = 5;
return $contentIdentity = [
return [
'entityType' => 'cms_page',
'field' => 'content',
'entityId' => $pageId
Expand All @@ -150,7 +150,7 @@ public function getCmsPageIdentities()
public function getCmsBlockIdentities()
{
$blockId = 1;
return $contentIdentity = [
return [
'entityType' => 'cms_block',
'field' => 'content',
'entityId' => $blockId
Expand Down

0 comments on commit a36a924

Please sign in to comment.