From e774b3db6fcb4499c824236f5e86fe478e93e94c Mon Sep 17 00:00:00 2001 From: Fabian Streitel Date: Tue, 9 Feb 2021 15:52:11 +0100 Subject: [PATCH] add todo bla --- src/main/kotlin/assertk/assert.kt | 1 + 1 file changed, 1 insertion(+) 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)) } }