Skip to content

Commit

Permalink
[improvement][project]Adapt docker related scripts to new version.
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryjzhang committed Dec 26, 2024
1 parent 7a76dec commit e60170b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ void testGetUnAvailableItem() {
fieldRemovedReq.setModelId(2L);
fieldRemovedReq.setFields(Lists.newArrayList("pv"));
UnAvailableItemResp unAvailableItemResp = modelService.getUnAvailableItem(fieldRemovedReq);
List<Long> expectedUnAvailableMetricId = Lists.newArrayList(1L, 4L);
List<Long> expectedUnAvailableMetricId = Lists.newArrayList(1L);
List<Long> actualUnAvailableMetricId =
unAvailableItemResp.getMetricResps().stream().map(MetricResp::getId)
.sorted(Comparator.naturalOrder()).collect(Collectors.toList());
Expand Down

0 comments on commit e60170b

Please sign in to comment.