From d7b5eaf0f4388ca4ee02fe3cd48a4503cade074c Mon Sep 17 00:00:00 2001 From: eric-martin Date: Fri, 8 Feb 2019 23:41:48 -0600 Subject: [PATCH] BAEL-2658: Fixed eqaul/equal --- .../test/kotlin/com/baeldung/kotlin/junit5/CalculatorTest5.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core-kotlin/src/test/kotlin/com/baeldung/kotlin/junit5/CalculatorTest5.kt b/core-kotlin/src/test/kotlin/com/baeldung/kotlin/junit5/CalculatorTest5.kt index 1337ff7503..daaedca5a3 100644 --- a/core-kotlin/src/test/kotlin/com/baeldung/kotlin/junit5/CalculatorTest5.kt +++ b/core-kotlin/src/test/kotlin/com/baeldung/kotlin/junit5/CalculatorTest5.kt @@ -7,7 +7,7 @@ class CalculatorTest5 { private val calculator = Calculator() @Test - fun `Adding 1 and 3 should be eqaul to 4`() { + fun `Adding 1 and 3 should be equal to 4`() { Assertions.assertEquals(4, calculator.add(1, 3)) } @@ -21,7 +21,7 @@ class CalculatorTest5 { } @Test - fun `The square of a number should be eqaul to that number multiplied in itself`() { + fun `The square of a number should be equal to that number multiplied in itself`() { Assertions.assertAll( Executable { Assertions.assertEquals(1, calculator.square(1)) }, Executable { Assertions.assertEquals(4, calculator.square(2)) },