https://kotlinlang.org logo
Title
e

elect

10/12/2021, 5:21 AM
I'm bumping up some lib with the latest(sh) kotest
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
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
init {
        "BCN_Epileptic.X" {
            ...
        }
    }