From 4318fdb4e76990588baf49def46db8239eb2e417 Mon Sep 17 00:00:00 2001 From: Christian Holbrook Date: Wed, 31 Jan 2024 10:53:42 -0700 Subject: [PATCH] Remove reference to socketDebugger in unit tests --- src/adapters/DebugProtocolAdapter.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/adapters/DebugProtocolAdapter.spec.ts b/src/adapters/DebugProtocolAdapter.spec.ts index 861f5b9b..92750920 100644 --- a/src/adapters/DebugProtocolAdapter.spec.ts +++ b/src/adapters/DebugProtocolAdapter.spec.ts @@ -99,7 +99,7 @@ describe('DebugProtocolAdapter', function() { await adapter.connect(); await adapter['createDebugProtocolClient'](); - client = adapter['socketDebugger']; + client = adapter['client']; client['options'].shutdownTimeout = 100; client['options'].exitChannelTimeout = 100; //disable logging for tests because they clutter the test output