From 4ac7e780307372415061d758ee8c1955828a26cc Mon Sep 17 00:00:00 2001 From: kozhuhds Date: Wed, 26 Nov 2025 16:26:47 +0100 Subject: [PATCH] fix: prettier --- .../commandPalette/CommandPaletteDynamicRegistry.test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/public/app/features/commandPalette/CommandPaletteDynamicRegistry.test.ts b/public/app/features/commandPalette/CommandPaletteDynamicRegistry.test.ts index 0a7cf8899d6..8f3a5ae2d7d 100644 --- a/public/app/features/commandPalette/CommandPaletteDynamicRegistry.test.ts +++ b/public/app/features/commandPalette/CommandPaletteDynamicRegistry.test.ts @@ -259,9 +259,7 @@ describe('CommandPaletteDynamicRegistry', () => { }); await registry.getState(); - expect(consoleLogSpy).toHaveBeenCalledWith( - expect.stringContaining('Registered provider: test-plugin/0') - ); + expect(consoleLogSpy).toHaveBeenCalledWith(expect.stringContaining('Registered provider: test-plugin/0')); consoleLogSpy.mockRestore(); process.env.NODE_ENV = originalNodeEnv;