Skip to content

Commit

Permalink
Updating test to corrected spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
dehrk authored and vdiez committed Jan 21, 2025
1 parent 77dedc2 commit 6ba9851
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void html() {
checkMessagesVerifier.verify(sourceCode.getIssues())
.next().atLine(1)
.withMessage(
"The element button has an implicit role of button. Definig this explicitly is redundant and should be avoided.")
"The element button has an implicit role of button. Defining this explicitly is redundant and should be avoided.")
.next().atLine(2)
.noMore();
}
Expand All @@ -50,7 +50,7 @@ void html_with_custom_property() {
new File("src/test/resources/checks/NoRedundantRolesCheck.html"),
check);
checkMessagesVerifier.verify(sourceCode.getIssues())
.next().atLine(6).withMessage("The element nav has an implicit role of navigation. Definig this explicitly is redundant and should be avoided.")
.next().atLine(6).withMessage("The element nav has an implicit role of navigation. Defining this explicitly is redundant and should be avoided.")
.noMore();
}

Expand All @@ -64,7 +64,7 @@ void html_with_invalid_custom_property() {
check);
checkMessagesVerifier.verify(sourceCode.getIssues())
.next().atLine(2)
.next().atLine(6).withMessage("The element nav has an implicit role of navigation. Definig this explicitly is redundant and should be avoided.")
.next().atLine(6).withMessage("The element nav has an implicit role of navigation. Defining this explicitly is redundant and should be avoided.")
.noMore();
}
}

0 comments on commit 6ba9851

Please sign in to comment.