Skip to content

Commit 6ac0d61

Browse files
authored
style: update style
1 parent cd061cc commit 6ac0d61

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
import { fareyApproximation } from "../FareyApproximation"
1+
import { fareyApproximation } from '../FareyApproximation'
22

33
describe('fareyApproximation', () => {
44
it('Return Farey Approximation of 0.7538385', () => {
55
const approx = fareyApproximation(0.7538385)
66
expect(approx).toBe({ numerator: 22, denominator: 29 })
77
})
8-
8+
99
it('Return Farey Approximation of 0.23584936', () => {
1010
const approx = fareyApproximation(0.23584936)
11-
expet(approx).toBe({ numerator: 13, denominator: 55 })
11+
expect(approx).toBe({ numerator: 13, denominator: 55 })
1212
})
1313
})

0 commit comments

Comments
 (0)