From 425b8905ecbc01f29b400766acfa2e361fff8296 Mon Sep 17 00:00:00 2001 From: Ali Dehghani Date: Sun, 3 Feb 2019 18:45:18 +0330 Subject: [PATCH] Simplifying the test method name. --- .../src/test/kotlin/com/baeldung/kotlin/junit5/SimpleTest5.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core-kotlin/src/test/kotlin/com/baeldung/kotlin/junit5/SimpleTest5.kt b/core-kotlin/src/test/kotlin/com/baeldung/kotlin/junit5/SimpleTest5.kt index 49541985e1..15ff201430 100644 --- a/core-kotlin/src/test/kotlin/com/baeldung/kotlin/junit5/SimpleTest5.kt +++ b/core-kotlin/src/test/kotlin/com/baeldung/kotlin/junit5/SimpleTest5.kt @@ -14,7 +14,7 @@ class SimpleTest5 { @Test @Disabled - fun `JUnit should complain and report failed assertions`() { + fun `3 is equal to 4`() { Assertions.assertEquals(3, 4) { "Three does not equal four" }