diff --git a/dsl/src/test/scala/com/crobox/clickhouse/dsl/column/ArrayFunctionsTest.scala b/dsl/src/test/scala/com/crobox/clickhouse/dsl/column/ArrayFunctionsTest.scala index 58b088c6..b59cd506 100644 --- a/dsl/src/test/scala/com/crobox/clickhouse/dsl/column/ArrayFunctionsTest.scala +++ b/dsl/src/test/scala/com/crobox/clickhouse/dsl/column/ArrayFunctionsTest.scala @@ -54,7 +54,7 @@ class ArrayFunctionsTest extends DslTestSpec { } it should "arrayFunction: join with concat" in { - val col: ArrayFunctionOp[Iterable[String]] = arrayConcat(Array(shieldId, itemId), Array[String]()).asInstanceOf[ArrayFunctionOp[Iterable[String]]] + val col = arrayConcat(Array(shieldId, itemId), Array[String]()).asInstanceOf[ArrayFunctionOp[Iterable[String]]] toSQL(select(arrayJoin(col))) should be(s"SELECT arrayJoin(arrayConcat([shield_id, item_id], []))") } }