Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Nov 22, 2019
1 parent a66479d commit f356b0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/TestCase/Auth/TinyAuthorizeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ public function testAdminMethodsAllowed() {
public function testAuthorizeRolesAsPrefix() {
$config = [
'authorizeByPrefix' => true,
'autoClearCache' => true
'autoClearCache' => true,
];
$object = new TestTinyAuthorize($this->collection, $config);

Expand Down Expand Up @@ -1130,7 +1130,7 @@ public function testIniConstruct() {
$params = [
'controller' => 'Tags',
'prefix' => null,
'plugin' => 'Tags'
'plugin' => 'Tags',
];

$expected = 'Tags.Tags';
Expand All @@ -1141,7 +1141,7 @@ public function testIniConstruct() {
$params = [
'controller' => 'Tags',
'prefix' => 'Admin',
'plugin' => 'Tags'
'plugin' => 'Tags',
];

$expected = 'Tags.Admin/Tags';
Expand Down

0 comments on commit f356b0b

Please sign in to comment.