Skip to content

Commit

Permalink
fix tests 3
Browse files Browse the repository at this point in the history
  • Loading branch information
mmtftr committed Dec 16, 2024
1 parent c05a409 commit eb39d3a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ void testGetTagDetails_Success() {
assertEquals("Description1", response.getDescription());
assertEquals(2, response.getRelatedQuestions().size());
verify(tagRepository, times(1)).findById(tagId);
verify(questionRepository, times(1)).findQuestionsByTagId(tagId);
verify(questionRepository, times(1)).findQuestionsByDifficultyAndTagId(DifficultyLevel.EASY, tagId);
}

@Test
Expand Down

0 comments on commit eb39d3a

Please sign in to comment.