Skip to content

Commit

Permalink
Lower case "u" in Ramp Up in UI
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberw committed Mar 6, 2024
1 parent cf69f94 commit 05a7097
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-5328b7d2.js"></script>
<script type="module" crossorigin src="./assets/index-64fef90e.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-5328b7d2.js"></script>
<script type="module" crossorigin src="./assets/index-64fef90e.js"></script>
</head>
<body>
<div id="root"></div>
Expand Down
2 changes: 1 addition & 1 deletion locust/webui/src/components/SwarmForm/SwarmForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function SwarmForm({
<TextField
defaultValue={(isShape && '-') || spawnRate || 1}
disabled={!!isShape}
label='Ramp Up (users started/second)'
label='Ramp up (users started/second)'
name='spawnRate'
title='Disabled for tests using LoadTestShape class'
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe('SwarmForm', () => {
fireEvent.change(getByLabelText('Number of users (peak concurrency)'), {
target: { value: '15' },
});
fireEvent.change(getByLabelText('Ramp Up (users started/second)'), {
fireEvent.change(getByLabelText('Ramp up (users started/second)'), {
target: { value: '20' },
});
fireEvent.change(getByLabelText('Run time (e.g. 20, 20s, 3m, 2h, 1h20m, 3h30m10s, etc.)'), {
Expand Down

0 comments on commit 05a7097

Please sign in to comment.