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);
});