Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
blcham authored Jul 21, 2024
1 parent e1a3ede commit e1ceec1
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -325,13 +325,10 @@ void importRecordsJsonImportsSpecifiedRecordsAndReturnsImportResult() throws Exc
).andReturn();

final RecordImportResult result = readValue(mvcResult, RecordImportResult.class);

// Assertions
assertEquals(importResult.getTotalCount(), result.getTotalCount());
assertEquals(importResult.getImportedCount(), result.getImportedCount());
assertThat(importResult.getErrors(), anyOf(nullValue(), empty()));


@SuppressWarnings("unchecked")
final ArgumentCaptor<List<PatientRecord>> captor = ArgumentCaptor.forClass(List.class);
verify(patientRecordServiceMock).importRecords(captor.capture());
Expand Down

0 comments on commit e1ceec1

Please sign in to comment.