We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb1446b commit 1e6f51dCopy full SHA for 1e6f51d
1 file changed
bson-kotlinx/src/test/kotlin/org/bson/codecs/kotlinx/KotlinSerializerCodecTest.kt
@@ -244,6 +244,8 @@ class KotlinSerializerCodecTest {
244
"""{"value": -9223372036854775808}""" to """{"value": -9223372036854775808}""",
245
"""{"value": {"${'$'}numberDecimal": "-9223372036854775809"}}""" to
246
"""{"value": -9223372036854775809}""",
247
+ """{"value": {"${'$'}numberDecimal": "1.8E+309"}}""" to """{"value": 1.8E+309}""",
248
+ """{"value": {"${'$'}numberDecimal": "1E-325"}}""" to """{"value": 1E-325}""",
249
)
250
}
251
0 commit comments