1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix tests

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-06-22 15:41:39 -04:00
parent 17d384f503
commit 321913ee57

View File

@ -5,7 +5,7 @@
import { getInjectable } from "@ogre-tools/injectable"; import { getInjectable } from "@ogre-tools/injectable";
import resolveSystemProxyChannelInjectable from "../../../common/utils/resolve-system-proxy/resolve-system-proxy-channel.injectable"; import resolveSystemProxyChannelInjectable from "../../../common/utils/resolve-system-proxy/resolve-system-proxy-channel.injectable";
import resolveSystemProxyInjectable from "./resolve-system-proxy.injectable"; import resolveSystemProxyInjectable from "./resolve-system-proxy.injectable";
import { requestChannelListenerInjectionToken } from "../../../common/utils/channel/request-channel-listener-injection-token"; import { requestChannelHandlerInjectionToken } from "../../../common/utils/channel/request-channel-listener-injection-token";
const resolveSystemProxyChannelResponderInjectable = getInjectable({ const resolveSystemProxyChannelResponderInjectable = getInjectable({
id: "resolve-system-proxy-channel-responder", id: "resolve-system-proxy-channel-responder",
@ -15,7 +15,7 @@ const resolveSystemProxyChannelResponderInjectable = getInjectable({
handler: di.inject(resolveSystemProxyInjectable), handler: di.inject(resolveSystemProxyInjectable),
}), }),
injectionToken: requestChannelListenerInjectionToken, injectionToken: requestChannelHandlerInjectionToken,
}); });
export default resolveSystemProxyChannelResponderInjectable; export default resolveSystemProxyChannelResponderInjectable;