diff --git a/src/main/kotlin/assertk/assert.kt b/src/main/kotlin/assertk/assert.kt index 5394f600..290ff5cb 100644 --- a/src/main/kotlin/assertk/assert.kt +++ b/src/main/kotlin/assertk/assert.kt @@ -36,6 +36,7 @@ sealed class AssertBlock { override fun thrownError(f: Assert.() -> Unit) = fail("expected exception but was:${show(value)}") override fun returnedValue(f: Assert.() -> Unit) { + // TODO fix the thing! f(assert(value)) } }