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 95c7ba6 commit 2ea8c6cCopy full SHA for 2ea8c6c
src/test/scala/com/fasterxml/jackson/module/scala/introspect/BeanIntrospectorTest.scala
@@ -306,15 +306,4 @@ class BeanIntrospectorTest extends BaseSpec with Inside with LoneElement with Op
306
props should have size 2
307
props.forall ( _.getter.isDefined ) shouldBe true
308
}
309
-
310
- it should "handle case class with Seq member" in {
311
- case class ModelWSeqString(strings: Seq[String])
312
313
- val beanDesc = BeanIntrospector(classOf[ModelWSeqString])
314
- val props = beanDesc.properties
315
316
- props should have size 1
317
- props.head.name shouldBe "strings"
318
- props.head.field.value.getAnnotatedType.getType.getTypeName shouldBe "scala.collection.Seq<java.lang.String>"
319
- }
320
0 commit comments