From 45df260a38a48e7a372a89fdf3e57780882037f4 Mon Sep 17 00:00:00 2001 From: Nicolas Torres Date: Wed, 28 Jul 2021 11:02:16 +0200 Subject: [PATCH] Updates tests because not the tag is Error not Warning Signed-off-by: Nicolas Torres --- .../src/components/GithubDeploymentsCard.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/github-deployments/src/components/GithubDeploymentsCard.test.tsx b/plugins/github-deployments/src/components/GithubDeploymentsCard.test.tsx index 474b4a5941..4c1b7854c6 100644 --- a/plugins/github-deployments/src/components/GithubDeploymentsCard.test.tsx +++ b/plugins/github-deployments/src/components/GithubDeploymentsCard.test.tsx @@ -311,7 +311,7 @@ describe('github-deployments', () => { expect( await rendered.findByText( - 'Warning: No apiBaseUrl available for host my-github-3.com, please check your integrations config', + 'Error: No apiBaseUrl available for host my-github-3.com, please check your integrations config', ), ).toBeInTheDocument(); }); @@ -336,7 +336,7 @@ describe('github-deployments', () => { expect( await rendered.findByText( - 'Warning: No matching GitHub integration configuration for host my-github-unknown.com, please check your integrations config', + 'Error: No matching GitHub integration configuration for host my-github-unknown.com, please check your integrations config', ), ).toBeInTheDocument(); });