We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc9a50f commit 5d4599fCopy full SHA for 5d4599f
src/test/scala/tools/jackson/module/scala/deser/CreatorTest.scala
@@ -139,7 +139,7 @@ class CreatorTest extends DeserializationFixture {
139
// the next check behaves differently in jackson 2.18 (dummy value ends up as 42)
140
// jackson 3 seems more correct because the constructor annotated with JsonCreator should be used
141
// and that ignores the dummy value in the json
142
- roundTrip shouldEqual orig.copy(dummy = 0)
+ roundTrip shouldEqual orig.copy(dummy = -1)
143
144
// this part of test relies on the 2nd constructor being used (with the JsonCreator annotation)
145
val bean2 = """{"script":"abc"}"""
0 commit comments