You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val doc =ConfigDocumentFactory.parseString(""" include required("a.conf") include required("b.conf") abc = 1""".trimIndent())
val result = doc.withValueText("abc", "2").render()
assertEquals(""" include required("a.conf") include required("b.conf") abc = 2 """.trimIndent(), result)
The problem is the closing bracket gets chopped - you end up with:
include required("a.conf"
include required("b.conf"
The text was updated successfully, but these errors were encountered:
The following test fails:
The problem is the closing bracket gets chopped - you end up with:
The text was updated successfully, but these errors were encountered: