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 d68fe43 commit 3c524e3Copy full SHA for 3c524e3
dev/tests/integration/testsuite/Magento/Translation/Model/Js/PreProcessorTest.php
@@ -37,7 +37,10 @@ protected function setUp()
37
{
38
$viewFileSystem = $this->createPartialMock(FileSystem::class, ['getLocaleFileName']);
39
$viewFileSystem->expects($this->any())->method('getLocaleFileName')
40
- ->willReturn(dirname(__DIR__) . '/_files/Magento/Store/i18n/en_AU.csv');
+ ->willReturn(
41
+ // phpcs:ignore Magento2.Functions.DiscouragedFunction
42
+ dirname(__DIR__) . '/_files/Magento/Store/i18n/en_AU.csv'
43
+ );
44
45
$objectManager = Bootstrap::getObjectManager();
46
$objectManager->addSharedInstance($viewFileSystem, FileSystem::class);
0 commit comments