Skip to content

Commit 9a9d276

Browse files
authored
Merge pull request #563 from magento-performance/ACPT-1524
ACPT-1524: Fix Integration Tests failures on Application-Server branch
2 parents 87738f3 + f507336 commit 9a9d276

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/BundleImportExport/Model/Import/Product/Type

1 file changed

+1
-1
lines changed

app/code/Magento/BundleImportExport/Model/Import/Product/Type/Bundle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -780,7 +780,7 @@ private function getStoreIdByCode(string $storeCode): int
780780
if (!isset($this->storeCodeToId[$storeCode])) {
781781
/** @var $store Store */
782782
foreach ($this->storeManager->getStores() as $store) {
783-
$this->storeCodeToId[$store->getCode()] = $store->getId();
783+
$this->storeCodeToId[$store->getCode()] = (int)$store->getId();
784784
}
785785
}
786786

0 commit comments

Comments
 (0)