Skip to content

Commit c1bc0a3

Browse files
committed
Fix typo in method names
1 parent 8fef6b7 commit c1bc0a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/Store/Test/Unit/App/Request/PathInfoProcessorTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ protected function setUp()
3737
$this->_model = new \Magento\Store\App\Request\PathInfoProcessor($this->_storeManagerMock);
3838
}
3939

40-
public function testProcessIfStoreExistsAndIsNotDirectAcccessToFrontName()
40+
public function testProcessIfStoreExistsAndIsNotDirectAccessToFrontName()
4141
{
4242
$store = $this->createMock(\Magento\Store\Model\Store::class);
4343
$this->_storeManagerMock->expects(
@@ -62,7 +62,7 @@ public function testProcessIfStoreExistsAndIsNotDirectAcccessToFrontName()
6262
$this->assertEquals('/node_one/', $this->_model->process($this->_requestMock, $this->_pathInfo));
6363
}
6464

65-
public function testProcessIfStoreExistsAndDirectAcccessToFrontName()
65+
public function testProcessIfStoreExistsAndDirectAccessToFrontName()
6666
{
6767
$store = $this->createMock(\Magento\Store\Model\Store::class);
6868
$this->_storeManagerMock->expects(

0 commit comments

Comments
 (0)