From 9a33293425e8dc90e642b72ed0ac38ff414067db Mon Sep 17 00:00:00 2001 From: Mike Ball Date: Thu, 17 Feb 2022 17:07:44 -0500 Subject: [PATCH] address lint errors Signed-off-by: Mike Ball --- .../src/components/Incident/Incidents.test.tsx | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/plugins/splunk-on-call/src/components/Incident/Incidents.test.tsx b/plugins/splunk-on-call/src/components/Incident/Incidents.test.tsx index 4c844e936f..c180a4f637 100644 --- a/plugins/splunk-on-call/src/components/Incident/Incidents.test.tsx +++ b/plugins/splunk-on-call/src/components/Incident/Incidents.test.tsx @@ -44,7 +44,7 @@ describe('Incidents', () => { const { getByText, queryByTestId } = render( wrapInTestApp( - + , ), ); @@ -68,7 +68,7 @@ describe('Incidents', () => { } = render( wrapInTestApp( - + , ), ); @@ -94,13 +94,7 @@ describe('Incidents', () => { mockSplunkOnCallApi.getIncidents.mockResolvedValue([MOCK_INCIDENT]); mockSplunkOnCallApi.getTeams.mockResolvedValue([MOCK_TEAM]); - const { - getByText, - getByTitle, - getAllByTitle, - getByLabelText, - queryByTestId, - } = render( + const { getByText, getAllByTitle, getByLabelText, queryByTestId } = render( wrapInTestApp( @@ -139,7 +133,7 @@ describe('Incidents', () => { const { getByText, queryByTestId } = render( wrapInTestApp( - + , ), );