We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6730ad3 commit e9d92b5Copy full SHA for e9d92b5
src/test/api.functional.test.ts
@@ -56,7 +56,9 @@ suite('Extension API', () => {
56
onDidChangePythonEnvironment: onDidChangePythonEnvironment.event,
57
getPythonEnvironment: (_uri: Uri) => undefined,
58
};
59
- when(serviceContainer.get<JupyterPythonEnvironmentApi>(JupyterExtensionPythonEnvironments)).thenReturn(jupyterApi);
+ when(serviceContainer.get<JupyterPythonEnvironmentApi>(JupyterExtensionPythonEnvironments)).thenReturn(
60
+ jupyterApi,
61
+ );
62
when(serviceContainer.get<IDisposableRegistry>(IDisposableRegistry)).thenReturn([]);
63
getDebugpyPathStub = sinon.stub(pythonDebugger, 'getDebugpyPath');
64
getDebugpyPathStub.resolves(debuggerPath);
0 commit comments