Skip to content

Commit db1c52a

Browse files
committed
fix: remove unnecessary sleep import and blank line
1 parent 5076775 commit db1c52a

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/data/markdown/translated-guides/en/02 Using k6/14 Scenarios/01 Executors/05 constant-arrival-rate.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ It allocates 50 VUs for k6 to dynamically use as needed.
5858

5959
```javascript
6060
import http from 'k6/http';
61-
import { sleep } from 'k6';
6261

6362
export const options = {
6463
discardResponseBodies: true,
@@ -77,7 +76,6 @@ export const options = {
7776

7877
// Pre-allocate VUs
7978
preAllocatedVUs: 50,
80-
8179
},
8280
},
8381
};

src/data/markdown/translated-guides/en/02 Using k6/14 Scenarios/01 Executors/06 ramping-arrival-rate.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ export const options = {
7777
// Pre-allocate necessary VUs.
7878
preAllocatedVUs: 50,
7979

80-
8180
stages: [
8281
// Start 300 iterations per `timeUnit` for the first minute.
8382
{ target: 300, duration: '1m' },

0 commit comments

Comments
 (0)