Skip to content

Commit c0323b5

Browse files
committed
fix test
1 parent 8960d8c commit c0323b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pages/scientificServices/pipelines/tabs/run/RunJob.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ describe('RunJob Component', () => {
165165
expect(descriptionTextArea).toHaveValue('Test description for pipeline run');
166166

167167
// Toggle allowChunkFailures
168-
const allowChunkFailuresCheckbox = screen.getByLabelText('allow chunk failures');
168+
const allowChunkFailuresCheckbox = screen.getByLabelText('Allow chunk failures');
169169
await user.click(allowChunkFailuresCheckbox);
170170

171171
expect(allowChunkFailuresCheckbox).toBeChecked();

src/pages/scientificServices/pipelines/utils/mock-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export function mockPipelineWithDetails(name: string): PipelineWithDetails {
3535
},
3636
{
3737
name: 'allowChunkFailures',
38-
displayName: 'allow chunk failures',
38+
displayName: 'Allow chunk failures',
3939
description: 'If true, allow up to 10% chunk failure rate. Default false.',
4040
type: 'BOOLEAN',
4141
isRequired: false,

0 commit comments

Comments
 (0)