style: update style

This commit is contained in:
Rak Laptudirm
2021-07-19 13:17:06 +05:30
committed by GitHub
parent cd061ccf25
commit 6ac0d61185

View File

@ -1,4 +1,4 @@
import { fareyApproximation } from "../FareyApproximation"
import { fareyApproximation } from '../FareyApproximation'
describe('fareyApproximation', () => {
it('Return Farey Approximation of 0.7538385', () => {
@ -8,6 +8,6 @@ describe('fareyApproximation', () => {
it('Return Farey Approximation of 0.23584936', () => {
const approx = fareyApproximation(0.23584936)
expet(approx).toBe({ numerator: 13, denominator: 55 })
expect(approx).toBe({ numerator: 13, denominator: 55 })
})
})