I have a project using kotest-assertions-arrow v1.0.3
.
I have a code using shouldBeRight
:
obj.shouldBeRight { value ->
assertThat(value.blahblahblah, equalTo(xyz))
}
shouldBeRight
is marked as deprecated in that version so I am trying to update it.
I am unable to find any indication on how I should to that (both on web on stackoverflow).
Trying to upgrade the lib version, I have an error saying that even the import of "io.kotest" is not available.
I am using arrow-core v1.1.3
if it helps.
In addition to that, I can say that I found this page saying that either.shouldBeRight
is still there in v1.3.3
so I am totally lost.
Can someone enlighten me on how to fix this situation?
Regards