I'm bumping up some lib with the latest(sh) kotest...
# kotest
e
I'm bumping up some lib with the latest(sh) kotest
Copy code
api("io.kotest:kotest-runner-junit5:4.6.1")
api("io.kotest:kotest-assertions-core:4.6.1")
this used to work in the past, but now it doesnt get picked up any more
Copy code
init {
        val BCN_Epileptic = "BCN_Epileptic.X"
        BCN_Epileptic {
            ...
        }
    }
It works only if I use instantiate and
invoke
on the string itself directly, that is
Copy code
init {
        "BCN_Epileptic.X" {
            ...
        }
    }