Skip to content

Commit

Permalink
fix: flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-guggisberg committed Apr 12, 2023
1 parent 503bb69 commit c3c1447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fetch/index.http2.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ describe('HTTP/2-specific Fetch Tests', () => {
});

it('concurrent HTTP/2 requests to same origin', async () => {
const N = 500; // # of parallel requests
const N = 100; // # of parallel requests
const TEST_URL = `${server.origin}/bytes`;
// generete array of 'randomized' urls
const urls = Array.from({ length: N }, () => Math.floor(Math.random() * N)).map((num) => `${TEST_URL}?count=${num}`);
Expand Down

0 comments on commit c3c1447

Please sign in to comment.