Skip to content

Commit

Permalink
fix error with case list counts method
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryan Lai authored and alisman committed Dec 3, 2024
1 parent 219c111 commit cc16f2c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import org.cbioportal.persistence.helper.StudyViewFilterHelper;
import org.cbioportal.persistence.mybatisclickhouse.config.MyBatisConfig;

import org.cbioportal.service.impl.StudyViewColumnarServiceImpl;
import org.cbioportal.service.util.StudyViewColumnarServiceUtil;
import org.cbioportal.web.parameter.StudyViewFilter;
import org.junit.Test;
import org.junit.runner.RunWith;
Expand Down Expand Up @@ -102,7 +102,7 @@ public void getMolecularProfileCountsAcrossStudies() {

var unMergedCounts = studyViewMapper.getCaseListDataCountsPerStudy(StudyViewFilterHelper.build(studyViewFilter, null, null) );

var caseListCountsMerged = StudyViewColumnarServiceImpl.mergeCaseListCounts(
var caseListCountsMerged = StudyViewColumnarServiceUtil.mergeCaseListCounts(
unMergedCounts
);

Expand Down

0 comments on commit cc16f2c

Please sign in to comment.