Skip to content

Commit

Permalink
test: add labels to checkboxes in validation test pages
Browse files Browse the repository at this point in the history
  • Loading branch information
web-padawan committed Apr 16, 2024
1 parent f12b455 commit bcd421a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public CheckboxBasicValidationPage() {

@Override
protected Checkbox createTestField() {
return new Checkbox() {
return new Checkbox("Checkbox") {
@Override
protected void validate() {
super.validate();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ public CheckboxBinderValidationPage() {

@Override
protected Checkbox createTestField() {
return new Checkbox();
return new Checkbox("Checkbox");
}
}

0 comments on commit bcd421a

Please sign in to comment.