Skip to content

Commit a36a924

Browse files
committed
magento/adobe-stock-integration#1724: Support batches processing for synchronization queue messages - fixed failed integration test
1 parent 561c849 commit a36a924

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/code/Magento/MediaContentSynchronization/Test/Integration/Model/SynchronizeIdentitiesTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public function filesProvider(): array
111111
public function getCategoryIdentities()
112112
{
113113
$categoryId = 28767;
114-
return $contentIdentity = [
114+
return [
115115
'entityType' => 'catalog_category',
116116
'field' => 'description',
117117
'entityId' => $categoryId
@@ -124,7 +124,7 @@ public function getCategoryIdentities()
124124
public function getProductIdentities()
125125
{
126126
$productId = 1567;
127-
return $contentIdentity = [
127+
return [
128128
'entityType' => 'catalog_product',
129129
'field' => 'description',
130130
'entityId' => $productId
@@ -137,7 +137,7 @@ public function getProductIdentities()
137137
public function getCmsPageIdentities()
138138
{
139139
$pageId = 5;
140-
return $contentIdentity = [
140+
return [
141141
'entityType' => 'cms_page',
142142
'field' => 'content',
143143
'entityId' => $pageId
@@ -150,7 +150,7 @@ public function getCmsPageIdentities()
150150
public function getCmsBlockIdentities()
151151
{
152152
$blockId = 1;
153-
return $contentIdentity = [
153+
return [
154154
'entityType' => 'cms_block',
155155
'field' => 'content',
156156
'entityId' => $blockId

0 commit comments

Comments
 (0)