diff options
author | Sebastian <sebasjm@gmail.com> | 2024-03-08 15:36:50 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2024-03-08 15:39:59 -0300 |
commit | e92440e257b4df4a232a28701143a4f9db730458 (patch) | |
tree | 85c8bc084cf0089de9b7034de6f9db82d58e308e /packages/auditor-backoffice-ui | |
parent | 8dea5ac8f41e1d17163a08ba203f15ec372cd442 (diff) |
fix #8489
Diffstat (limited to 'packages/auditor-backoffice-ui')
-rw-r--r-- | packages/auditor-backoffice-ui/src/hooks/testing.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/auditor-backoffice-ui/src/hooks/testing.tsx b/packages/auditor-backoffice-ui/src/hooks/testing.tsx index 20b9c8a35..a0ba59b2e 100644 --- a/packages/auditor-backoffice-ui/src/hooks/testing.tsx +++ b/packages/auditor-backoffice-ui/src/hooks/testing.tsx @@ -144,9 +144,9 @@ export class ApiMockEnvironment extends MockEnvironment { } const bankCore = new TalerCoreBankHttpClient("http://localhost", mockHttpClient) - const bankIntegration = new TalerBankIntegrationHttpClient(bankCore.getIntegrationAPI(), mockHttpClient) - const bankRevenue = new TalerRevenueHttpClient(bankCore.getRevenueAPI("a"), "a", mockHttpClient) - const bankWire = new TalerWireGatewayHttpClient(bankCore.getWireGatewayAPI("b"), "b", mockHttpClient) + const bankIntegration = new TalerBankIntegrationHttpClient(bankCore.getIntegrationAPI().href, mockHttpClient) + const bankRevenue = new TalerRevenueHttpClient(bankCore.getRevenueAPI("a").href, "a", mockHttpClient) + const bankWire = new TalerWireGatewayHttpClient(bankCore.getWireGatewayAPI("b").href, "b", mockHttpClient) return ( <BackendContextProvider defaultUrl="http://backend"> |