Skip to content

Commit

Permalink
Merge pull request #5417 from jay-hodgson/SWC-6865
Browse files Browse the repository at this point in the history
  • Loading branch information
xschildw authored Jun 6, 2024
2 parents 35b31e0 + 662a713 commit b4d4b37
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ public void onFailure(Throwable caught) {
}

public void onSuccess(AddBatchOfFilesToDownloadListResponse result) {
String href = "DownloadCart:0";
String href = "/DownloadCart:0";
popupUtils.showInfo(
entityHeader.getName() + EntityBadge.ADDED_TO_DOWNLOAD_LIST,
href,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public void onFailure(Throwable caught) {
}

public void onSuccess(AddBatchOfFilesToDownloadListResponse result) {
String href = "DownloadCart:0";
String href = "/DownloadCart:0";
popupUtils.showInfo(
entityName + EntityBadge.ADDED_TO_DOWNLOAD_LIST,
href,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ public void testOnAddToDownloadListV2() {
verify(mockPopupUtils)
.showInfo(
header.getName() + EntityBadge.ADDED_TO_DOWNLOAD_LIST,
"DownloadCart:0",
"/DownloadCart:0",
DisplayConstants.VIEW_DOWNLOAD_LIST
);
verify(mockEventBus).fireEvent(any(DownloadListUpdatedEvent.class));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ public void testOnAddToDownloadListV2() {
verify(mockPopupUtils)
.showInfo(
entityName + EntityBadge.ADDED_TO_DOWNLOAD_LIST,
"DownloadCart:0",
"/DownloadCart:0",
DisplayConstants.VIEW_DOWNLOAD_LIST
);
verify(mockEventBus).fireEvent(any(DownloadListUpdatedEvent.class));
Expand Down

0 comments on commit b4d4b37

Please sign in to comment.