From 5608adbd36cea9609ded8a02687a663178ce8bc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Go=C5=82=C4=99biowski?= Date: Fri, 3 Jan 2025 10:41:21 +0100 Subject: [PATCH] Tests fix --- src/Cody.VisualStudio/CodyPackage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cody.VisualStudio/CodyPackage.cs b/src/Cody.VisualStudio/CodyPackage.cs index 175ebfe..3cbf728 100644 --- a/src/Cody.VisualStudio/CodyPackage.cs +++ b/src/Cody.VisualStudio/CodyPackage.cs @@ -128,7 +128,7 @@ private void InitializeServices() FileService = new FileService(this, Logger); var statusCenterService = this.GetService(); ProgressService = new ProgressService(statusCenterService); - TestingSupportService = new TestingSupportService(statusCenterService); + TestingSupportService = null; // new TestingSupportService(statusCenterService); NotificationHandlers = new NotificationHandlers(UserSettingsService, AgentNotificationsLogger, FileService, SecretStorageService); NotificationHandlers.OnOptionsPageShowRequest += HandleOnOptionsPageShowRequest;