From ceadaeee2260427c0dd3e7874ff0e0abeaf37222 Mon Sep 17 00:00:00 2001 From: Vanduir Date: Wed, 3 Aug 2022 12:15:36 -0300 Subject: [PATCH] Adjusted problems with unit test --- src/test/debugProcess/ExternalDebugAdapter.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/debugProcess/ExternalDebugAdapter.test.ts b/src/test/debugProcess/ExternalDebugAdapter.test.ts index 9f8727e..3f8e5af 100644 --- a/src/test/debugProcess/ExternalDebugAdapter.test.ts +++ b/src/test/debugProcess/ExternalDebugAdapter.test.ts @@ -134,7 +134,7 @@ describe('External debug adapter', () => { }); it('Requests a variable value thas is not allocated', async () => { - const adapter = new ExternalDebugAdapter("dummyCommandLine", () => { }, "", "", new RequestValueNotAllocated()); + const adapter = new ExternalDebugAdapter("dummyCommandLine", () => { }, "", "", "", new RequestValueNotAllocated()); const result = await adapter.requestVariableValue('wninf-pro'); expect(undefined).to.equal(result); });