From 0dd8b8c8b6d1776d5174a99373a676e9358b2e40 Mon Sep 17 00:00:00 2001 From: Connor Peet Date: Wed, 11 Aug 2021 14:05:55 -0700 Subject: [PATCH] testing: update tests --- src/vs/workbench/test/browser/api/extHostTesting.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/test/browser/api/extHostTesting.test.ts b/src/vs/workbench/test/browser/api/extHostTesting.test.ts index c87bcd4e5c52a..8bc33ad3f8a60 100644 --- a/src/vs/workbench/test/browser/api/extHostTesting.test.ts +++ b/src/vs/workbench/test/browser/api/extHostTesting.test.ts @@ -457,7 +457,7 @@ suite('ExtHost Testing', () => { task1.appendOutput('hello'); const taskId = proxy.$appendOutputToRun.args[0]?.[1]; - assert.deepStrictEqual([['run-id', taskId, VSBuffer.fromString('hello')]], proxy.$appendOutputToRun.args); + assert.deepStrictEqual([['run-id', taskId, VSBuffer.fromString('hello'), undefined, undefined]], proxy.$appendOutputToRun.args); task1.end(); assert.strictEqual(proxy.$finishedExtensionTestRun.called, false);