From fdce6477a6eb4202b7562209eaf908cc7d8d2b48 Mon Sep 17 00:00:00 2001 From: Brittany Feenstra Date: Mon, 10 Aug 2020 15:01:11 -0700 Subject: [PATCH] more test clean up --- .../app/views/editorSettings/test/editorSettings.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/src/dashboard/app/views/editorSettings/test/editorSettings.js b/assets/src/dashboard/app/views/editorSettings/test/editorSettings.js index 34a3c55d7f69..efa0da0b56c2 100644 --- a/assets/src/dashboard/app/views/editorSettings/test/editorSettings.js +++ b/assets/src/dashboard/app/views/editorSettings/test/editorSettings.js @@ -59,9 +59,9 @@ SettingsWrapper.propTypes = { }; describe('Editor Settings: ', function () { - it('should render settings page with google analytics and publisher logo sections', function () { + it('should render settings page with google analytics section', function () { const { getByText, getByRole } = renderWithTheme( - + ); const googleAnalyticsHeading = getByText(GA_TEXT.SECTION_HEADING); @@ -70,7 +70,7 @@ describe('Editor Settings: ', function () { const input = getByRole('textbox'); expect(input).toBeDefined(); - expect(input.value).toBe('123-45-98-not-an-id'); + expect(input.value).toBe('UA-098909-05'); expect(mockFetchSettings).toHaveBeenCalledTimes(1); });