Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
adekunleoduye committed Aug 26, 2021
1 parent 90c4c9d commit d948501
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions squareRoot.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import squareRoot from './squareRoot.js'

describe('Squareroot', () => {
it("Should output number's square", () => {
const acutal = squareRoot(3);
const actual = squareRoot(3);
const expected = 9;

expect(acutal).toEqual(expected);
expect(actual).toEqual(expected);
})
})

0 comments on commit d948501

Please sign in to comment.