Skip to content

Commit

Permalink
adjust range of results for the probability tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jsnoble committed Nov 5, 2024
1 parent 115fe89 commit f8bcda2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/sample_random/processor-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ describe('sample_random', () => {
harness = await makeTest({ probability_to_keep: 95 });
const results = await harness.runSlice(data);

expect(results.length).toBeLessThan(9600);
expect(results.length).toBeGreaterThan(9400);
expect(results.length).toBeLessThan(9700);
expect(results.length).toBeGreaterThan(9300);
});

it('with large datasets and 50%', async () => {
Expand Down

0 comments on commit f8bcda2

Please sign in to comment.