Skip to content

Commit

Permalink
Remove useless force option
Browse files Browse the repository at this point in the history
  • Loading branch information
monsieurswag committed Sep 13, 2024
1 parent fceee0a commit 5aa32cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/tests/utils/form-content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export class FormContent {
case FormFieldType.DATE:
await field.locator.clear();
case FormFieldType.NUMBER:
await field?.locator.fill(values[key].toString(), { force: true });
await field?.locator.fill(values[key].toString());
break;
default:
await field?.locator.fill(values[key]);
Expand Down

0 comments on commit 5aa32cb

Please sign in to comment.