From 0387453b1dccbb44a5df3e80a177053d431bc9e4 Mon Sep 17 00:00:00 2001 From: Jesper Skytte Hansen Date: Tue, 10 May 2016 12:56:15 +0200 Subject: [PATCH] Remove integer part of concatenation --- tests/TestCase/ORM/Association/HasManyTest.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/TestCase/ORM/Association/HasManyTest.php b/tests/TestCase/ORM/Association/HasManyTest.php index 90fe6a8e6de..7fe23f08413 100644 --- a/tests/TestCase/ORM/Association/HasManyTest.php +++ b/tests/TestCase/ORM/Association/HasManyTest.php @@ -553,8 +553,7 @@ public function testValueBinderUpdateOnSubQueryStrategy() ->select([ 'id', 'slug' => $query->func()->concat([ - 'id' => 'identifier', - '-', + '---', 'name' => 'identifier' ]) ])