Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ezzatron committed Apr 27, 2024
1 parent 71b1bde commit f489415
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/vitest/n_EB_E2p_EB_E.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ describe("n_EB_E2p_EB_E()", () => {
expect.any(Number),
expect.any(Number),
]);
expect(actual[0]).toBeCloseTo(expected[0], 5); // TODO: figure out why low accuracy
expect(actual[1]).toBeCloseTo(expected[1], 5); // TODO: figure out why low accuracy
expect(actual[2]).toBeCloseTo(expected[2], 5); // TODO: figure out why low accuracy
expect(actual[0]).toBeCloseTo(expected[0], 8);
expect(actual[1]).toBeCloseTo(expected[1], 8);
expect(actual[2]).toBeCloseTo(expected[2], 8);
},
TEST_DURATION + 1000,
);
Expand Down

0 comments on commit f489415

Please sign in to comment.