Skip to content

Commit

Permalink
Fix incorrect usage of recipient as param (#12797)
Browse files Browse the repository at this point in the history
  • Loading branch information
domlimm authored Feb 24, 2024
1 parent 7a22ab8 commit fc0fbd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/e2e/java/teammates/e2e/cases/sql/BaseE2ETestCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ protected FeedbackQuestionData getFeedbackQuestion(FeedbackQuestion fq) {
}

FeedbackResponseData getFeedbackResponse(String questionId, String giver, String recipient) {
return BACKDOOR.getFeedbackResponseData(questionId, recipient, recipient);
return BACKDOOR.getFeedbackResponseData(questionId, giver, recipient);
}

@Override
Expand Down

0 comments on commit fc0fbd1

Please sign in to comment.