Skip to content

Commit

Permalink
adjust CleanupIntegrationTest
Browse files Browse the repository at this point in the history
  • Loading branch information
coolchock committed Oct 21, 2024
1 parent e25a086 commit 494f520
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -396,8 +396,8 @@ void testDeleteNonRatedResults() throws Exception {
assertThat(feedbackRepository.findByResult(oldResult1)).isEmpty();
assertThat(textBlockRepository.findById(oldTextBlock1.getId())).isEmpty();

assertThat(resultRepository.findById(oldResult2.getId())).isEmpty();
assertThat(feedbackRepository.findByResult(oldResult2)).isEmpty();
assertThat(resultRepository.findById(oldResult2.getId())).isNotEmpty();
assertThat(feedbackRepository.findByResult(oldResult2)).isNotEmpty();
assertThat(textBlockRepository.findById(oldTextBlock2.getId())).isEmpty();

assertThat(participantScoreRepository.findById(newParticipantScore1.getId())).isNotEmpty();
Expand Down

0 comments on commit 494f520

Please sign in to comment.