Skip to content

Commit

Permalink
Revert controler rename to keep backward compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
Bas Leenknegt committed Jun 15, 2023
1 parent 9d7c2b3 commit 654a5d6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ public ResponseEntity<List<GenericAssayDataBin>> fetchGenericAssayDataBinCounts(
@RequestMapping(value = "/clinical-data-table/fetch", method = RequestMethod.POST,
consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE)
@ApiOperation("Fetch clinical data for the Clinical Tab of Study View")
public ResponseEntity<ClinicalDataCollection> fetchClinicalTable(
public ResponseEntity<ClinicalDataCollection> fetchClinicalDataClinicalTable(
@ApiParam(required = true, value = "Study view filter")
@Valid @RequestBody(required = false)
StudyViewFilter studyViewFilter,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,6 @@ public void fetchGenericAssayDataCounts() throws Exception {

@Test
public void fetchClinicalDataClinicalTable() throws Exception {

// For this sake of this test the sample clinical data and patient clinical data are identical.
when(clinicalDataService.fetchSampleClinicalTable(anyList(), anyList(),
anyInt(), anyInt(), anyString(), any(), anyString())).thenReturn(clinicalData);
Expand Down

0 comments on commit 654a5d6

Please sign in to comment.