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 50e7f72 commit fffe3b3Copy full SHA for fffe3b3
dev/tests/unit/testsuite/Magento/Cms/Controller/Noroute/IndexTest.php
@@ -103,7 +103,13 @@ protected function setUp()
103
*/
104
public function testIndexAction($renderPage)
105
{
106
- $this->_cmsHelperMock->expects($this->once())->method('prepareResultPage')->will($this->returnValue($renderPage));
+ $this->_cmsHelperMock->expects(
107
+ $this->once()
108
+ )->method(
109
+ 'prepareResultPage'
110
+ )->will(
111
+ $this->returnValue($renderPage)
112
+ );
113
$this->_requestMock->expects($this->any())->method('setActionName')->with('defaultNoRoute');
114
$this->_controller->execute();
115
}
0 commit comments