From 6824792504613793a4266956412504263b91c141 Mon Sep 17 00:00:00 2001 From: Alexander Ioffe Date: Thu, 5 Dec 2024 01:13:10 -0500 Subject: [PATCH] continue --- .../io/getquill/context/jdbc/postgres/PrettyPrintingSpec.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/quill-jdbc-test-postgres/src/test/scala/io/getquill/context/jdbc/postgres/PrettyPrintingSpec.scala b/quill-jdbc-test-postgres/src/test/scala/io/getquill/context/jdbc/postgres/PrettyPrintingSpec.scala index c0a700bdb6..4686fe2388 100644 --- a/quill-jdbc-test-postgres/src/test/scala/io/getquill/context/jdbc/postgres/PrettyPrintingSpec.scala +++ b/quill-jdbc-test-postgres/src/test/scala/io/getquill/context/jdbc/postgres/PrettyPrintingSpec.scala @@ -1,6 +1,7 @@ package io.getquill.context.jdbc.postgres import io.getquill.base.Spec +import io.getquill.context.TranslateOptions class PrettyPrintingSpec extends Spec { @@ -11,7 +12,7 @@ class PrettyPrintingSpec extends Spec { "pretty prints query when enabled" in { val q = quote(query[Person]) - translate(q, true) mustEqual + translate(q, TranslateOptions(prettyPrint = true)) mustEqual """SELECT | x.name, | x.age