Browse Source

Fix PHPCS error.

Mark Story 11 years ago
parent
commit
8ddcfc9bc8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/TestCase/View/Helper/FormHelperTest.php

+ 2 - 2
tests/TestCase/View/Helper/FormHelperTest.php

@@ -6329,8 +6329,8 @@ class FormHelperTest extends TestCase
     {
         $result = $this->Form->postLink(
             'Delete',
-            ['controller' => 'posts', 'action' => 'delete', 1, '?' => ['a' => 'b', 'c' => 'd']
-        ]);
+            ['controller' => 'posts', 'action' => 'delete', 1, '?' => ['a' => 'b', 'c' => 'd']]
+        );
         $expected = [
             'form' => [
                 'method' => 'post', 'action' => '/posts/delete/1?a=b&c=d',