We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebaf6c5 commit 30eaa53Copy full SHA for 30eaa53
src/test/scala/com/fasterxml/jackson/module/scala/deser/OptionWithNumberDeserializerTest.scala
@@ -45,7 +45,7 @@ class OptionWithNumberDeserializerTest extends DeserializerTest with BeforeAndAf
45
val v1 = deserialize("""{"valueLong":151}""", classOf[OptionLong])
46
v1 shouldBe OptionLong(Some(151L))
47
v1.valueLong.get shouldBe 151L
48
- //this will next call will fail with a Scala unboxing exception unless you BeanIntrospector.registerReferencedType
+ //this will next call will fail with a Scala unboxing exception unless you ScalaAnnotationIntrospector.registerReferencedType
49
//or use one of the equivalent classes in OptionWithNumberDeserializerTest
50
useOptionLong(v1.valueLong) shouldBe 302L
51
}
0 commit comments