Skip to content

Commit be56ea7

Browse files
committed
fix: fixed spelling errors in Horner Scheme tests
1 parent d4e1ec9 commit be56ea7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Maths/test/HornerScheme.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
import { hornerScheme } from '../HornerScheme'
22

33
describe('Horner Scheme', () => {
4-
test('Case 1: testing convertation to the binary system', () => {
4+
test('Case 1: testing conversion to the binary system', () => {
55
expect(hornerScheme(210, 2)).toEqual('11010010')
66
expect(hornerScheme(-210, 2)).toEqual('-11010010')
77
})
8-
test('Case 2: testing convertation to the system with base 5', () => {
8+
test('Case 2: testing conversion to the system with base 5', () => {
99
expect(hornerScheme(210, 5)).toEqual('1320')
1010
expect(hornerScheme(-210, 5)).toEqual('-1320')
1111
})
12-
test('Case 3: testing convertation to the octal system', () => {
12+
test('Case 3: testing conversion to the octal system', () => {
1313
expect(hornerScheme(210, 8)).toEqual('322')
1414
expect(hornerScheme(-210, 8)).toEqual('-322')
1515
})

0 commit comments

Comments
 (0)