Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
krusche committed Nov 10, 2024
1 parent a4c59e9 commit 475bf6e
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -536,8 +536,7 @@ void testExportSubmissionAnonymizationCombining() throws Exception {

// Rest call
final var path = "/api/programming-exercises/" + programmingExercise.getId() + "/export-repos-by-participation-ids/" + participation1.getId();
var exportOptions = new RepositoryExportOptionsDTO(false, false, false, null, false, true, false, false, false);
downloadedFile = request.postWithResponseBodyFile(path, exportOptions, HttpStatus.OK);
downloadedFile = request.postWithResponseBodyFile(path, getOptions(), HttpStatus.OK);
assertThat(downloadedFile).exists();

List<Path> entries = unzipExportedFile();
Expand Down

0 comments on commit 475bf6e

Please sign in to comment.