Skip to content

Commit

Permalink
chore: fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lpatiny committed May 17, 2024
1 parent e6ca823 commit 093f8fe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/__tests__/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ describe('Simulated', () => {
noisy[i] = original[i] + i;
}

let { delta, iteration, regression } = baselineCorrectionRegression(times, noisy);
let { delta, iteration, regression } = baselineCorrectionRegression(
times,
noisy,
);

expect(delta).toBeLessThan(0.001);
expect(iteration).toBeLessThan(100);
Expand Down

0 comments on commit 093f8fe

Please sign in to comment.