Skip to content

Commit a653a6e

Browse files
committed
updates
1 parent abfb605 commit a653a6e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/testing/testController/testCancellationRunAdapters.unit.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ suite('Execution Flow Run Adapters', () => {
3838

3939
setup(() => {
4040
const proc = typeMoq.Mock.ofType<MockChildProcess>();
41-
proc.setup((p) => p.on).returns(() => noop as any );
42-
proc.setup((p) => p.stdout).returns(() => null );
43-
proc.setup((p) => p.stderr).returns(() => null );
41+
proc.setup((p) => p.on).returns(() => noop as any);
42+
proc.setup((p) => p.stdout).returns(() => null);
43+
proc.setup((p) => p.stderr).returns(() => null);
4444
mockProc = proc.object;
4545
useEnvExtensionStub = sinon.stub(extapi, 'useEnvExtension');
4646
useEnvExtensionStub.returns(false);

0 commit comments

Comments
 (0)