Skip to content

Commit f25ff07

Browse files
committed
ACP2E-2568: Image file is Case insensitive in Pagebuilder(Image not showing in Media Gallery when upload both lowercase and uppercase image with same name)
1 parent fd075fd commit f25ff07

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/code/Magento/MediaGallery/Test/Unit/Model/ResourceModel/DeleteAssetsByPathsTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
declare(strict_types=1);
1616

17-
namespace Unit\Model\ResourceModel;
17+
namespace Magento\MediaGallery\Test\Unit\Model\ResourceModel;
1818

1919
use Magento\Framework\App\ResourceConnection;
2020
use Magento\Framework\DB\Adapter\AdapterInterface;
@@ -126,7 +126,7 @@ private function assetDeleteByPathDataProvider(): array
126126
];
127127
}
128128

129-
private function getAssets(): array
129+
public function getAssets(): array
130130
{
131131
return [
132132
[

app/code/Magento/MediaGallery/Test/Unit/Model/ResourceModel/GetAssetsByPathsTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
declare(strict_types=1);
1616

17-
namespace Unit\Model\ResourceModel;
17+
namespace Magento\MediaGallery\Test\Unit\Model\ResourceModel;
1818

1919
use Magento\Framework\App\ResourceConnection;
2020
use Magento\Framework\DB\Adapter\AdapterInterface;
@@ -185,7 +185,7 @@ private function getAssets(): array
185185
]
186186
];
187187
}
188-
private function assetDeleteByPathDataProvider(): array
188+
public function assetDeleteByPathDataProvider(): array
189189
{
190190
return [
191191
[

0 commit comments

Comments
 (0)