Skip to content

Commit

Permalink
server tests adjusted
Browse files Browse the repository at this point in the history
  • Loading branch information
az108 committed Oct 8, 2024
1 parent cdb6442 commit 23f045d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ void testGetAllFeedbackDetailsForExercise() throws Exception {
participationUtilService.addFeedbackToResult(feedback, result);

String url = "/api/exercises/" + programmingExercise.getId() + "/feedback-details-paged" + "?page=1&pageSize=10&sortedColumn=detailText&sortingOrder=ASCENDING"
+ "&filterTasks=&filterTestCases=&filterOccurrence=";
+ "&searchTerm=&filterTasks=&filterTestCases=&filterOccurrence=";

FeedbackAnalysisResponseDTO response = request.get(url, HttpStatus.OK, FeedbackAnalysisResponseDTO.class);

Expand Down Expand Up @@ -789,7 +789,7 @@ void testGetAllFeedbackDetailsForExerciseWithMultipleFeedback() throws Exception
participationUtilService.addFeedbackToResult(feedback3, result1);

String url = "/api/exercises/" + programmingExercise.getId() + "/feedback-details-paged" + "?page=1&pageSize=10&sortedColumn=detailText&sortingOrder=ASCENDING"
+ "&filterTasks=&filterTestCases=&filterOccurrence=";
+ "&searchTerm=&filterTasks=&filterTestCases=&filterOccurrence=";

FeedbackAnalysisResponseDTO response = request.get(url, HttpStatus.OK, FeedbackAnalysisResponseDTO.class);

Expand Down

0 comments on commit 23f045d

Please sign in to comment.