Skip to content

Commit

Permalink
Fixed Set to List issue in Patchfinder test
Browse files Browse the repository at this point in the history
  • Loading branch information
ctevse committed Oct 31, 2023
1 parent 92e7009 commit 4da354b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void testRun() {

PatchFinder patchFinder = Mockito.mock(PatchFinder.class);
//check the patch commits
List<PatchCommit> patchCommits = PatchFinder.getPatchCommits();
Set<PatchCommit> patchCommits = PatchFinder.getPatchCommits();
assertEquals(24, patchCommits.size());
}

Expand Down

0 comments on commit 4da354b

Please sign in to comment.