Skip to content

Commit 6824792

Browse files
committed
continue
1 parent 86fbfc6 commit 6824792

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

quill-jdbc-test-postgres/src/test/scala/io/getquill/context/jdbc/postgres/PrettyPrintingSpec.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package io.getquill.context.jdbc.postgres
22

33
import io.getquill.base.Spec
4+
import io.getquill.context.TranslateOptions
45

56
class PrettyPrintingSpec extends Spec {
67

@@ -11,7 +12,7 @@ class PrettyPrintingSpec extends Spec {
1112

1213
"pretty prints query when enabled" in {
1314
val q = quote(query[Person])
14-
translate(q, true) mustEqual
15+
translate(q, TranslateOptions(prettyPrint = true)) mustEqual
1516
"""SELECT
1617
| x.name,
1718
| x.age

0 commit comments

Comments
 (0)