diff --git a/README.md b/README.md index b77488709a0..7213be1420e 100644 Binary files a/README.md and b/README.md differ diff --git a/kotlin-power-assert/src/main/kotlin/com/bnorm/power/PowerAssertCallTransformer.kt b/kotlin-power-assert/src/main/kotlin/com/bnorm/power/PowerAssertCallTransformer.kt index df228225722..2d93f4ec698 100644 --- a/kotlin-power-assert/src/main/kotlin/com/bnorm/power/PowerAssertCallTransformer.kt +++ b/kotlin-power-assert/src/main/kotlin/com/bnorm/power/PowerAssertCallTransformer.kt @@ -190,7 +190,7 @@ class PowerAssertCallTransformer( val indentations = sorted.map { it.indentation } addArgument(irString(buildString { - append(":").newline() + newline() append(callSource).newline() var last = -1 for (i in indentations) { diff --git a/kotlin-power-assert/src/test/kotlin/com/bnorm/power/test.kt b/kotlin-power-assert/src/test/kotlin/com/bnorm/power/test.kt index 90b2f257e59..fc08d551970 100644 --- a/kotlin-power-assert/src/test/kotlin/com/bnorm/power/test.kt +++ b/kotlin-power-assert/src/test/kotlin/com/bnorm/power/test.kt @@ -34,7 +34,7 @@ fun main() { assert(hello.length == "World".substring(1, 4).length) }""", """ -Assertion failed: +Assertion failed assert(hello.length == "World".substring(1, 4).length) | | | | | | | | | 3 @@ -55,7 +55,7 @@ fun main() { assert(hello.reversed() == emptyList()) }""", """ -Assertion failed: +Assertion failed assert(hello.reversed() == emptyList()) | | | | | | | [] @@ -74,7 +74,7 @@ fun main() { assert(1 == 2) { "Not equal" } }""", """ -Not equal: +Not equal assert(1 == 2) { "Not equal" } | false