Skip to content

Commit 39599bd

Browse files
committed
Fix typo in variable name
1 parent bb55f40 commit 39599bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/code/Magento/Persistent/Test/Unit/Model/Checkout/ConfigProviderPluginTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,17 +64,17 @@ protected function setUp()
6464
}
6565

6666
/**
67-
* @param bool $persitenceEnabled
67+
* @param bool $persistenceEnabled
6868
* @param bool $isPersistent
6969
* @param bool $isLoggedIn
7070
*
7171
* @dataProvider configDataProvider
7272
*/
73-
public function testAfterGetConfigNegative($persitenceEnabled, $isPersistent, $isLoggedIn)
73+
public function testAfterGetConfigNegative($persistenceEnabled, $isPersistent, $isLoggedIn)
7474
{
7575
$result = [40, 30, 50];
7676

77-
$this->persistentHelperMock->expects($this->once())->method('isEnabled')->willReturn($persitenceEnabled);
77+
$this->persistentHelperMock->expects($this->once())->method('isEnabled')->willReturn($persistenceEnabled);
7878
$this->persistentSessionMock->expects($this->any())->method('isPersistent')->willReturn($isPersistent);
7979
$this->customerSessionMock->expects($this->any())->method('isLoggedIn')->willReturn($isLoggedIn);
8080
$this->maskFactoryMock->expects($this->never())->method('create');

0 commit comments

Comments
 (0)