Skip to content

Commit d4e5a88

Browse files
committed
Fixed some typos
1 parent 39dd06c commit d4e5a88

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Tests/Functional/SetAclCommandTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ public function testSetAclUser()
7474

7575
try {
7676
$acl->isGranted($permissionMap->getMasks('OWNER', null), [$securityIdentity1]);
77-
$this->fail('NoAceFoundException not throwed');
77+
$this->fail('NoAceFoundException not thrown');
7878
} catch (NoAceFoundException $e) {
7979
}
8080

8181
try {
8282
$acl->isGranted($permissionMap->getMasks('OPERATOR', null), [$securityIdentity2]);
83-
$this->fail('NoAceFoundException not throwed');
83+
$this->fail('NoAceFoundException not thrown');
8484
} catch (NoAceFoundException $e) {
8585
}
8686
}
@@ -117,13 +117,13 @@ public function testSetAclRole()
117117

118118
try {
119119
$acl->isGranted($permissionMap->getMasks('VIEW', null), [$userSecurityIdentity]);
120-
$this->fail('NoAceFoundException not throwed');
120+
$this->fail('NoAceFoundException not thrown');
121121
} catch (NoAceFoundException $e) {
122122
}
123123

124124
try {
125125
$acl->isGranted($permissionMap->getMasks('OPERATOR', null), [$userSecurityIdentity]);
126-
$this->fail('NoAceFoundException not throwed');
126+
$this->fail('NoAceFoundException not thrown');
127127
} catch (NoAceFoundException $e) {
128128
}
129129
}

0 commit comments

Comments
 (0)