Skip to content

Commit 3765f05

Browse files
committed
Fix casing in variable name
1 parent af9dc75 commit 3765f05

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dev/tests/functional/tests/app/Magento/Security/Test/TestCase/LockAdminUserWhenEditingIntegrationTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,15 @@ public function __inject(
8484
/**
8585
* Run Lock user when creating new integration test.
8686
*
87-
* @param Integration $initintegration
87+
* @param Integration $initIntegration
8888
* @param Integration $integration
8989
* @param int $attempts
9090
* @param User $customAdmin
9191
* @param string $configData
9292
* @return void
9393
*/
9494
public function test(
95-
Integration $initintegration,
95+
Integration $initIntegration,
9696
Integration $integration,
9797
$attempts,
9898
User $customAdmin,
@@ -106,15 +106,15 @@ public function test(
106106
['configData' => $this->configData]
107107
)->run();
108108
$customAdmin->persist();
109-
$initintegration->persist();
109+
$initIntegration->persist();
110110

111111
// login to backend with new user
112112
$this->adminAuthLogin->open();
113113
$this->adminAuthLogin->getLoginBlock()->fill($customAdmin);
114114
$this->adminAuthLogin->getLoginBlock()->submit();
115115

116116
// Steps
117-
$filter = ['name' => $initintegration->getName()];
117+
$filter = ['name' => $initIntegration->getName()];
118118
$this->integrationIndexPage->open();
119119
$this->integrationIndexPage->getIntegrationGrid()->searchAndOpen($filter);
120120
for ($i = 0; $i < $attempts; $i++) {

0 commit comments

Comments
 (0)