diff --git a/tests/TestCase/Auth/TinyAuthorizeTest.php b/tests/TestCase/Auth/TinyAuthorizeTest.php index ffd8690b..f848c188 100644 --- a/tests/TestCase/Auth/TinyAuthorizeTest.php +++ b/tests/TestCase/Auth/TinyAuthorizeTest.php @@ -958,7 +958,7 @@ public function testAdminMethodsAllowed() { public function testAuthorizeRolesAsPrefix() { $config = [ 'authorizeByPrefix' => true, - 'autoClearCache' => true + 'autoClearCache' => true, ]; $object = new TestTinyAuthorize($this->collection, $config); @@ -1130,7 +1130,7 @@ public function testIniConstruct() { $params = [ 'controller' => 'Tags', 'prefix' => null, - 'plugin' => 'Tags' + 'plugin' => 'Tags', ]; $expected = 'Tags.Tags'; @@ -1141,7 +1141,7 @@ public function testIniConstruct() { $params = [ 'controller' => 'Tags', 'prefix' => 'Admin', - 'plugin' => 'Tags' + 'plugin' => 'Tags', ]; $expected = 'Tags.Admin/Tags';