From 7fa7857d4885bea7ef3dcfca9179c9dee1d88f0b Mon Sep 17 00:00:00 2001 From: Mike Ball Date: Thu, 3 Feb 2022 18:51:06 -0500 Subject: [PATCH] correct incorrect team annotation test Signed-off-by: Mike Ball --- .../src/components/EntitySplunkOnCallCard.test.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/splunk-on-call/src/components/EntitySplunkOnCallCard.test.tsx b/plugins/splunk-on-call/src/components/EntitySplunkOnCallCard.test.tsx index eb5c99d4e7..da2cfbc2a3 100644 --- a/plugins/splunk-on-call/src/components/EntitySplunkOnCallCard.test.tsx +++ b/plugins/splunk-on-call/src/components/EntitySplunkOnCallCard.test.tsx @@ -170,7 +170,9 @@ describe('SplunkOnCallCard', () => { ); await waitFor(() => !queryByTestId('progress')); expect( - getByText('Could not find team named "test" in the Splunk On-Call API'), + getByText( + 'Splunk On-Call API returned no record of teams associated with the "test" team name', + ), ).toBeInTheDocument(); });