Skip to content

Commit

Permalink
fix: EXPOSED-509 Upsert with escaped multiline string fails in prepar…
Browse files Browse the repository at this point in the history
…ed statement

- Remove accidentally left in println()
  • Loading branch information
bog-walk committed Sep 1, 2024
1 parent a1ffd6f commit efc3218
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ class UpsertTests : DatabaseTestsBase() {
) {
it[word] = testWord
}
assertEquals(multilinePhrase, tester.selectAll().single()[tester.phrase].also { println(it) })
assertEquals(multilinePhrase, tester.selectAll().single()[tester.phrase])

tester.upsert { // provided expression in insert
it[word] = "$testWord 2"
Expand Down

0 comments on commit efc3218

Please sign in to comment.