Browse Source

Remove integer part of concatenation

Jesper Skytte Hansen 10 years ago
parent
commit
0387453b1d
1 changed files with 1 additions and 2 deletions
  1. 1 2
      tests/TestCase/ORM/Association/HasManyTest.php

+ 1 - 2
tests/TestCase/ORM/Association/HasManyTest.php

@@ -553,8 +553,7 @@ class HasManyTest extends TestCase
             ->select([
             ->select([
                 'id',
                 'id',
                 'slug' => $query->func()->concat([
                 'slug' => $query->func()->concat([
-                    'id' => 'identifier',
-                    '-',
+                    '---',
                     'name' => 'identifier'
                     'name' => 'identifier'
                 ])
                 ])
             ])
             ])