diff options
Diffstat (limited to 'tests/units/AclTest.php')
-rw-r--r-- | tests/units/AclTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/units/AclTest.php b/tests/units/AclTest.php index e532d96c..83351616 100644 --- a/tests/units/AclTest.php +++ b/tests/units/AclTest.php @@ -90,7 +90,7 @@ class AclTest extends Base $this->assertFalse($acl->isPageAccessAllowed('user', 'remove')); $this->assertFalse($acl->isPageAccessAllowed('user', 'confirm')); $this->assertTrue($acl->isPageAccessAllowed('app', 'index')); - $this->assertTrue($acl->isPageAccessAllowed('user', 'index')); + $this->assertFalse($acl->isPageAccessAllowed('user', 'index')); $this->assertTrue($acl->isPageAccessAllowed('user', 'login')); $this->assertTrue($acl->isPageAccessAllowed('user', 'check')); $this->assertTrue($acl->isPageAccessAllowed('webhook', 'task')); |