Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ramari16 committed Oct 10, 2024
1 parent beab7a3 commit 92695cb
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ public void patientIdInit_patientsMatch_noException() {
public void patientIdInit_patientsDiffer_exception() {
when(mockProcessor1.getPatientIds()).thenReturn(List.of("1", "42", "99"));
when(mockProcessor2.getPatientIds()).thenReturn(List.of("1", "43", "99"));
when(mockProcessor3.getPatientIds()).thenReturn(List.of("1", "42", "99"));

assertThrows(IllegalStateException.class, () -> {
parentProcessor = new GenomicProcessorParentImpl(List.of(
Expand Down

0 comments on commit 92695cb

Please sign in to comment.