From 3e3dff511bcc4a0f78a504ba96c045e38a044c17 Mon Sep 17 00:00:00 2001 From: Emma Indal Date: Fri, 3 Jul 2020 11:38:27 +0200 Subject: [PATCH] fix(test): change to lowercase Co-authored-by: Bilawal Hameed --- .../techdocs/src/reader/components/TechDocsNotFound.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/techdocs/src/reader/components/TechDocsNotFound.test.tsx b/plugins/techdocs/src/reader/components/TechDocsNotFound.test.tsx index 1d3fbaf0d5..7792164b14 100644 --- a/plugins/techdocs/src/reader/components/TechDocsNotFound.test.tsx +++ b/plugins/techdocs/src/reader/components/TechDocsNotFound.test.tsx @@ -21,6 +21,6 @@ import { wrapInTestApp } from '@backstage/test-utils'; describe('TechDocs Not Found', () => { it('should render a Documentation not found page', async () => { const { queryByText } = render(wrapInTestApp()); - expect(queryByText(/Error: Documentation not found/i)).toBeInTheDocument(); + expect(queryByText(/error: documentation not found/i)).toBeInTheDocument(); }); });