Skip to content

Commit b7ca3be

Browse files
committed
Fix line length in Element template test
1 parent e467545 commit b7ca3be

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

lib/internal/Magento/Framework/View/Test/Unit/Element/TemplateTest.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,13 @@ protected function setUp()
9595
$this->loggerMock = $this->getMock(\Psr\Log\LoggerInterface::class);
9696
$this->templateEngine->expects($this->any())->method('get')->willReturn($this->templateEngine);
9797

98-
$this->appState = $this->getMock(\Magento\Framework\App\State::class, ['getAreaCode', 'getMode'], [], '', false);
98+
$this->appState = $this->getMock(
99+
\Magento\Framework\App\State::class,
100+
['getAreaCode', 'getMode'],
101+
[],
102+
'',
103+
false
104+
);
99105
$this->appState->expects($this->any())->method('getAreaCode')->willReturn('frontend');
100106
$storeManagerMock = $this->getMock(StoreManager::class, [], [], '', false);
101107
$storeMock = $this->getMock(Store::class, [], [], '', false);

0 commit comments

Comments
 (0)