File tree 1 file changed +2
-2
lines changed
src/test/scala/tools/jackson/module/scala/deser
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ class CaseClassDeserializerTest extends DeserializerTest {
213
213
it should " fail when deserializing null input for list if FAIL_ON_NULL_CREATOR_PROPERTIES enabled" in {
214
214
val input = """ {}"""
215
215
val mapper = newBuilder.enable(DeserializationFeature .FAIL_ON_NULL_CREATOR_PROPERTIES ).build()
216
- intercept[com.fasterxml .jackson.databind.exc.MismatchedInputException ] {
216
+ intercept[tools .jackson.databind.exc.MismatchedInputException ] {
217
217
mapper.readValue(input, classOf [ListHolder [String ]])
218
218
}
219
219
}
@@ -252,7 +252,7 @@ class CaseClassDeserializerTest extends DeserializerTest {
252
252
it should " fail when deserializing null input for map if FAIL_ON_NULL_CREATOR_PROPERTIES enabled" in {
253
253
val input = """ {}"""
254
254
val mapper = newBuilder.enable(DeserializationFeature .FAIL_ON_NULL_CREATOR_PROPERTIES ).build()
255
- intercept[com.fasterxml .jackson.databind.exc.MismatchedInputException ] {
255
+ intercept[tools .jackson.databind.exc.MismatchedInputException ] {
256
256
mapper.readValue(input, classOf [MapHolder [Int , String ]])
257
257
}
258
258
}
You can’t perform that action at this time.
0 commit comments