Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development: Fix the broken git programming submission e2e tests #9546

Merged
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,11 @@ public void authorizeUser(String repositoryTypeOrUserName, User user, Programmin

ProgrammingExerciseParticipation participation;
try {
participation = programmingExerciseParticipationService.retrieveParticipationForRepository(repositoryTypeOrUserName, localVCRepositoryUri.toString());
participation = programmingExerciseParticipationService.retrieveParticipationForRepository(exercise, repositoryTypeOrUserName,
localVCRepositoryUri.isPracticeRepository(), true);

// TODO Add this back in when we have figured out what is incorrect in the playwright configuration for (MySQL, Local)
// participation = programmingExerciseParticipationService.retrieveParticipationForRepository(repositoryTypeOrUserName, localVCRepositoryUri.toString());
}
catch (EntityNotFoundException e) {
throw new LocalVCInternalException(
Expand Down
Loading