diff options
| author | Shinigami <[email protected]> | 2023-01-28 15:53:50 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-01-28 15:53:50 +0100 |
| commit | 6772b00cf19ccdbebefe023dc0f96c6576234b5b (patch) | |
| tree | 3a8c38b60df9fdacc92141aeaa5f86a627754c53 | |
| parent | 86ae8b9d698f5b2c75214b0cfef869122a591001 (diff) | |
| download | faker-6772b00cf19ccdbebefe023dc0f96c6576234b5b.tar.xz faker-6772b00cf19ccdbebefe023dc0f96c6576234b5b.zip | |
test(helpers): widen arrayElements distribution (#1786)
| -rw-r--r-- | test/helpers.spec.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/helpers.spec.ts b/test/helpers.spec.ts index b991cbac..dcf0e486 100644 --- a/test/helpers.spec.ts +++ b/test/helpers.spec.ts @@ -370,8 +370,8 @@ describe('helpers', () => { } for (const occurrence of occurrences) { - expect(occurrence).toBeGreaterThanOrEqual(70); - expect(occurrence).toBeLessThanOrEqual(130); + expect(occurrence).toBeGreaterThanOrEqual(50); + expect(occurrence).toBeLessThanOrEqual(150); } } ); |
