Skip to content

Commit c8ad439

Browse files
committed
Fix typo in property name
1 parent 25827ba commit c8ad439

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Backend/ControllerAclTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class ControllerAclTest extends \PHPUnit\Framework\TestCase
3131
*
3232
* @var array
3333
*/
34-
private $whiteListetBackendControllers = [];
34+
private $whiteListedBackendControllers = [];
3535

3636
/**
3737
* List of ACL resources collected from acl.xml files.
@@ -57,7 +57,7 @@ protected function setUp()
5757
if (substr($item, 0, 1) === '#') {
5858
continue;
5959
}
60-
$this->whiteListetBackendControllers[$item] = 1;
60+
$this->whiteListedBackendControllers[$item] = 1;
6161
}
6262
}
6363

@@ -83,7 +83,7 @@ public function testAcl()
8383

8484
$controllerClass = $this->getClassByFilePath($controllerPath);
8585
// skip whitelisted controllers.
86-
if (isset($this->whiteListetBackendControllers[$controllerClass->getName()])) {
86+
if (isset($this->whiteListedBackendControllers[$controllerClass->getName()])) {
8787
continue;
8888
}
8989
// we don't have to check abstract classes.

0 commit comments

Comments
 (0)