summaryrefslogtreecommitdiff
path: root/integration-test/src/commonTest/kotlin/sample/JsonTest.kt
diff options
context:
space:
mode:
Diffstat (limited to 'integration-test/src/commonTest/kotlin/sample/JsonTest.kt')
-rw-r--r--integration-test/src/commonTest/kotlin/sample/JsonTest.kt5
1 files changed, 2 insertions, 3 deletions
diff --git a/integration-test/src/commonTest/kotlin/sample/JsonTest.kt b/integration-test/src/commonTest/kotlin/sample/JsonTest.kt
index 6b704354..88a7a0d7 100644
--- a/integration-test/src/commonTest/kotlin/sample/JsonTest.kt
+++ b/integration-test/src/commonTest/kotlin/sample/JsonTest.kt
@@ -12,7 +12,7 @@ import kotlinx.serialization.modules.*
import kotlin.reflect.*
import kotlin.test.*
-public val jsonWithDefaults = Json { encodeDefaults = true }
+val jsonWithDefaults = Json { encodeDefaults = true }
class JsonTest {
@@ -129,10 +129,9 @@ class JsonTest {
assertEquals("""Derived2(state1='foo')""", restored2.toString())
}
- @Suppress("NAME_SHADOWING")
private fun checkNotRegisteredMessage(exception: SerializationException) {
val expectedText =
- "is not registered for polymorphic serialization in the scope of"
+ "is not found in the polymorphic scope of"
assertEquals(true, exception.message?.contains(expectedText))
}