Skip to content

Commit

Permalink
Update StudyViewServiceImplTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
kalletlak committed Aug 8, 2023
1 parent 5b9bafa commit 1777fa2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ public void getCNAAlterationCountByGeneSpecific() throws Exception {
.thenReturn(geneMolecularData);

List<GenomicDataCountItem> result = studyViewService.getCNAAlterationCountsByGeneSpecific(studyIds, sampleIds, genomicDataFilters);
Assert.assertEquals(2L, result.size());
Assert.assertEquals(2, result.size());
Assert.assertEquals(BaseServiceImplTest.HUGO_GENE_SYMBOL_1, result.get(0).getHugoGeneSymbol());
Assert.assertEquals(BaseServiceImplTest.PROFILE_TYPE_1, result.get(0).getProfileType());
Assert.assertEquals(2, result.get(0).getCounts().get(0).getCount().intValue());
Expand Down

0 comments on commit 1777fa2

Please sign in to comment.