Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit 9732446

Browse files
committed
tests: keep random position test more in line with fixed position test
1 parent ad8d91e commit 9732446

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/readrows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ describe('Bigtable/ReadRows', () => {
358358
it('with an error at a random position', function (done) {
359359
this.timeout(200000);
360360
// Emits an error after a random number of chunks.
361-
const errorAfterChunkNo = Math.floor(Math.random() * 1000);
361+
const errorAfterChunkNo = Math.floor(500 + Math.random() * 500);
362362
runTest(done, errorAfterChunkNo);
363363
});
364364
});

0 commit comments

Comments
 (0)