Skip to content

Commit ec0d95f

Browse files
committed
fix imports
1 parent 368f28b commit ec0d95f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/scala/com/fasterxml/jackson/module/scala/introspect/BeanIntrospectorTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package com.fasterxml.jackson.module.scala.introspect
33
import java.lang.reflect.Member
44
import com.fasterxml.jackson.module.scala.BaseSpec
55
import com.fasterxml.jackson.module.scala.introspect.BeanIntrospectorTest.DecodedNameMatcher
6-
import org.scalatest.matchers.HavePropertyMatcher
6+
import org.scalatest.matchers.{HavePropertyMatcher, HavePropertyMatchResult}
77
import org.scalatest.{Inside, LoneElement, OptionValues}
88

99
import scala.reflect.NameTransformer

src/test/scala/com/fasterxml/jackson/module/scala/ser/NamingStrategyTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ class NamingStrategyTest extends FixtureAnyFlatSpec with Matchers {
3333
bytes.close()
3434
bytes.toString should include("foo_bar")
3535
val pojo = mapper.readValue(bytes.toByteArray, classOf[PojoWrittenInScala])
36-
pojo.getFooBar() shouldEqual ""
36+
pojo.fooBar shouldEqual ""
3737
}
3838
}

0 commit comments

Comments
 (0)