[arvados] updated: 2.7.0-6607-gb9c3baf9f9
git repository hosting
git at public.arvados.org
Mon May 20 15:40:21 UTC 2024
Summary of changes:
.../src/store/groups-panel/groups-panel-middleware-service.test.ts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
via b9c3baf9f92f85afc2ed4363b26d5c2064e195e6 (commit)
from 25e8b0468f90b561594ff234321168adfeee176f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit b9c3baf9f92f85afc2ed4363b26d5c2064e195e6
Author: Lisa Knox <lisaknox83 at gmail.com>
Date: Mon May 20 11:40:15 2024 -0400
21720: added type assertions for AxiosInstance get
Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>
diff --git a/services/workbench2/src/store/groups-panel/groups-panel-middleware-service.test.ts b/services/workbench2/src/store/groups-panel/groups-panel-middleware-service.test.ts
index 42d88a9a8e..e97d83e640 100644
--- a/services/workbench2/src/store/groups-panel/groups-panel-middleware-service.test.ts
+++ b/services/workbench2/src/store/groups-panel/groups-panel-middleware-service.test.ts
@@ -86,7 +86,7 @@ describe("GroupsPanelMiddlewareService", () => {
return Promise.resolve(
{ data: {}} as AxiosResponse);
}
- });
+ }) as AxiosInstance['get'];
// When
await store.dispatch(dataExplorerActions.REQUEST_ITEMS({id: GROUPS_PANEL_ID}));
@@ -142,7 +142,7 @@ describe("GroupsPanelMiddlewareService", () => {
} else {
return Promise.resolve({ data: {}} as AxiosResponse);
}
- });
+ }) as AxiosInstance['get'];
// When
await store.dispatch(dataExplorerActions.REQUEST_ITEMS({id: GROUPS_PANEL_ID}));
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list