Skip to content

Commit 2b7d204

Browse files
committed
snapshot
1 parent 3f2b79d commit 2b7d204

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name := "jackson-module-scala"
66

77
organization := "tools.jackson.module"
88

9-
ThisBuild / version := "3.0.0-rc2"
9+
ThisBuild / version := "3.0.0-SNAPSHOT"
1010

1111
val scala213Version = "2.13.16"
1212
ThisBuild / scalaVersion := scala213Version

src/test/scala/tools/jackson/module/scala/deser/CaseClassDeserializerTest.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ class CaseClassDeserializerTest extends DeserializerTest {
205205
it should "support deserializing null input for list as empty list" in {
206206
val input = """{}"""
207207
val result = deserialize(input, classOf[ListHolder[String]])
208-
// this result has only happened since 3.0.0 - befpre result.list was null
208+
// result.list used to be null until v2.19.0
209209
result.list shouldBe List.empty
210210
}
211211

@@ -218,7 +218,7 @@ class CaseClassDeserializerTest extends DeserializerTest {
218218
it should "support deserializing null input for map as empty map" in {
219219
val input = """{}"""
220220
val result = deserialize(input, classOf[MapHolder[Int, String]])
221-
// this result has only happened since 3.0.0 - befpre result.map was null
221+
// result.map used to be null until v2.19.0
222222
result.map shouldBe Map.empty
223223
}
224224

0 commit comments

Comments
 (0)