Skip to content

Commit

Permalink
Lower case "u" in Ramp Up in UI (another one)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberw committed Mar 6, 2024
1 parent 21b8daf commit 6241e9c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion locust/webui/dist/auth.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="theme-color" content="#000000" />

<title>Locust</title>
<script type="module" crossorigin src="./assets/index-64fef90e.js"></script>
<script type="module" crossorigin src="./assets/index-07a92637.js"></script>
</head>
<body>
<div id="root"></div>
Expand Down
2 changes: 1 addition & 1 deletion locust/webui/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="theme-color" content="#000000" />

<title>Locust</title>
<script type="module" crossorigin src="./assets/index-64fef90e.js"></script>
<script type="module" crossorigin src="./assets/index-07a92637.js"></script>
</head>
<body>
<div id="root"></div>
Expand Down
2 changes: 1 addition & 1 deletion locust/webui/src/components/SwarmForm/SwarmEditForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function SwarmEditForm({ onSubmit, numUsers, spawnRate }: ISwarmForm) {

<TextField
defaultValue={spawnRate || 1}
label='Ramp Up (users started/second)'
label='Ramp up (users started/second)'
name='spawnRate'
/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ describe('SwarmEditForm', () => {
fireEvent.change(getByLabelText('Number of users (peak concurrency)'), {
target: { value: '5' },
});
fireEvent.change(getByLabelText('Ramp Up (users started/second)'), {
fireEvent.change(getByLabelText('Ramp up (users started/second)'), {
target: { value: '10' },
});

Expand Down

0 comments on commit 6241e9c

Please sign in to comment.