Skip to content

Commit 113fe5c

Browse files
authored
Merge pull request eugenp#6301 from eugenp/BAEL-2658-CodeReview
BAEL-2658: Fixed eqaul/equal
2 parents 4ba3b74 + d7b5eaf commit 113fe5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core-kotlin/src/test/kotlin/com/baeldung/kotlin/junit5/CalculatorTest5.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class CalculatorTest5 {
77
private val calculator = Calculator()
88

99
@Test
10-
fun `Adding 1 and 3 should be eqaul to 4`() {
10+
fun `Adding 1 and 3 should be equal to 4`() {
1111
Assertions.assertEquals(4, calculator.add(1, 3))
1212
}
1313

@@ -21,7 +21,7 @@ class CalculatorTest5 {
2121
}
2222

2323
@Test
24-
fun `The square of a number should be eqaul to that number multiplied in itself`() {
24+
fun `The square of a number should be equal to that number multiplied in itself`() {
2525
Assertions.assertAll(
2626
Executable { Assertions.assertEquals(1, calculator.square(1)) },
2727
Executable { Assertions.assertEquals(4, calculator.square(2)) },

0 commit comments

Comments
 (0)