Skip to content

Commit

Permalink
Merge pull request eugenp#6301 from eugenp/BAEL-2658-CodeReview
Browse files Browse the repository at this point in the history
BAEL-2658: Fixed eqaul/equal
  • Loading branch information
eric-martin authored Feb 9, 2019
2 parents 4ba3b74 + d7b5eaf commit 113fe5c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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))
}

Expand All @@ -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)) },
Expand Down

0 comments on commit 113fe5c

Please sign in to comment.