Skip to content

Commit 89e8119

Browse files
Update jackson-module-scala to 3.0.0-rc9 (#169)
* Update jackson-module-scala to 3.0.0-rc9 * Update JacksonSupportSpec.scala * Update JacksonSupportSpec.scala --------- Co-authored-by: PJ Fanning <[email protected]>
1 parent 3e74cdd commit 89e8119

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ lazy val library =
285285
val avro4s = "4.1.2"
286286
val circe = "0.14.14"
287287
val jackson2 = "2.20.0"
288-
val jackson3 = "3.0.0-rc8"
288+
val jackson3 = "3.0.0-rc9"
289289
val json4s = "4.0.7"
290290
val jsoniterScala = "2.37.9"
291291
val ninny = "0.9.1"

pekko-http-jackson3/src/test/scala/com/github/pjfanning/pekkohttpjackson3/JacksonSupportSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ final class JacksonSupportSpec extends AsyncWordSpec with Matchers with BeforeAn
166166
val testCfg = JacksonSupport.jacksonConfig
167167
val mapper = JacksonSupport.createObjectMapper(testCfg)
168168
import org.apache.pekko.util.ccompat.JavaConverters._
169-
mapper.getRegisteredModules.asScala.map(_.getClass) should contain(
169+
mapper.getRegisteredModules.iterator().asScala.toList.map(_.getClass) should contain(
170170
classOf[DefaultScalaModule]
171171
)
172172
}

0 commit comments

Comments
 (0)