Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
guizmaii committed Sep 20, 2023
1 parent 9d3a2a2 commit 9629138
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ class BooleanLiteralSupportSpec extends Spec {
query[TestEntity].filter(t => !true)
}
ctx.run(q).string mustEqual
"SELECT t.s, t.i, t.l, t.o, t.b FROM TestEntity t WHERE (1 = 0)"
"SELECT t.s, t.i, t.l, t.o, t.b FROM TestEntity t WHERE 1 = 0"
}
"field" in testContext.withDialect(MirrorSqlDialectWithBooleanLiterals) { ctx =>
import ctx._
Expand Down

0 comments on commit 9629138

Please sign in to comment.