Skip to content

Commit e9d92b5

Browse files
committed
fixes
1 parent 6730ad3 commit e9d92b5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/test/api.functional.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ suite('Extension API', () => {
5656
onDidChangePythonEnvironment: onDidChangePythonEnvironment.event,
5757
getPythonEnvironment: (_uri: Uri) => undefined,
5858
};
59-
when(serviceContainer.get<JupyterPythonEnvironmentApi>(JupyterExtensionPythonEnvironments)).thenReturn(jupyterApi);
59+
when(serviceContainer.get<JupyterPythonEnvironmentApi>(JupyterExtensionPythonEnvironments)).thenReturn(
60+
jupyterApi,
61+
);
6062
when(serviceContainer.get<IDisposableRegistry>(IDisposableRegistry)).thenReturn([]);
6163
getDebugpyPathStub = sinon.stub(pythonDebugger, 'getDebugpyPath');
6264
getDebugpyPathStub.resolves(debuggerPath);

0 commit comments

Comments
 (0)