Browse Source

Fix coding standards

fixes #8821, fixes #8809
Pedro Perejón 10 years ago
parent
commit
e8494a576a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Utility/HashTest.php

+ 1 - 1
tests/TestCase/Utility/HashTest.php

@@ -718,7 +718,7 @@ class HashTest extends TestCase
     {
         $result = Hash::merge(
             ['hkuc' => ['lion']],
-            ['hkuc' =>'lion']
+            ['hkuc' => 'lion']
         );
         $expected = ['hkuc' => 'lion'];
         $this->assertEquals($expected, $result);