Yep, ignores whitespace, etc. So `""" { "name" : "...
# kotlintest
s
Yep, ignores whitespace, etc. So
""" { "name" : "sam" }""".shouldMatchJson("      {            "name": \n\n: "sam" \n\n }"""
😍 2
v
I`m getting
java.lang.NoSuchMethodError: com.fasterxml.jackson.module.kotlin.KotlinModule.<init>(IZZILkotlin/jvm/internal/DefaultConstructorMarker;)V
maybe some lib missing?
s
Looks like you may be pulling in an older version of jackson? Try adding jackson 2.9.9 manually
v
In fact it is the 2.10.0, was that method deprecatd?
s
Well Jackson is notorious for changing between releases
Are you ok to run from a snapshot ?
v
s
I mean I can release a snapshot of kotlintest test updated to use jackson 2.10.0
v
got it, will give it a try
s
I only just pushed it up, it won't have built yet
v
Meantime i`ve downgrade versions to
Copy code
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.9"
compile "com.fasterxml.jackson.module:jackson-module-kotlin:2.9.9"
and it worked
s
ok great
v
the snapshot will be published on maven?
s
yes sir
on the snapshots repo
v
yes, it worked with the snapshot! any toughts on when will it become a release?
s
Not sure, soon
🙏 1