diff --git a/x-pack/plugins/security_solution/public/common/containers/use_search_strategy/index.test.ts b/x-pack/plugins/security_solution/public/common/containers/use_search_strategy/index.test.ts index f286d9faebc0c..6a3b48dce6615 100644 --- a/x-pack/plugins/security_solution/public/common/containers/use_search_strategy/index.test.ts +++ b/x-pack/plugins/security_solution/public/common/containers/use_search_strategy/index.test.ts @@ -275,7 +275,9 @@ describe('useSearchStrategy', () => { it('should handle search error', () => { mockResponse.mockImplementation(() => { - throw new Error('simulated search response error, which could be 1) undefined response, 2) response without rawResponse, or 3) partial response'); + throw new Error( + 'simulated search response error, which could be 1) undefined response, 2) response without rawResponse, or 3) partial response' + ); }); const { result } = renderHook(() => useSearch(factoryQueryType));