Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dishenggg committed Mar 16, 2024
1 parent 4574475 commit c57f616
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ private void verifyMsqSelectableOptionsMessage(int qnNumber, FeedbackMsqQuestion
public void verifyGeneratedMsqQuestion(int qnNumber, String recipient, FeedbackMsqQuestionDetails questionDetails,
List<String> options) {
List<WebElement> optionTexts = getMsqOptions(qnNumber, recipient);
for (int i = 0; i < options.size(); i++) {
for (int i = 0; i < options.size(); i++) {
assertEquals(options.get(i), optionTexts.get(i).getText());
}
verifyMsqSelectableOptionsMessage(qnNumber, questionDetails);
Expand Down

0 comments on commit c57f616

Please sign in to comment.