Skip to content

Commit 30eaa53

Browse files
committed
Update OptionWithNumberDeserializerTest.scala
1 parent ebaf6c5 commit 30eaa53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/scala/com/fasterxml/jackson/module/scala/deser/OptionWithNumberDeserializerTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class OptionWithNumberDeserializerTest extends DeserializerTest with BeforeAndAf
4545
val v1 = deserialize("""{"valueLong":151}""", classOf[OptionLong])
4646
v1 shouldBe OptionLong(Some(151L))
4747
v1.valueLong.get shouldBe 151L
48-
//this will next call will fail with a Scala unboxing exception unless you BeanIntrospector.registerReferencedType
48+
//this will next call will fail with a Scala unboxing exception unless you ScalaAnnotationIntrospector.registerReferencedType
4949
//or use one of the equivalent classes in OptionWithNumberDeserializerTest
5050
useOptionLong(v1.valueLong) shouldBe 302L
5151
}

0 commit comments

Comments
 (0)