diff --git a/e2e/suites/actions/create-folder.test.ts b/e2e/suites/actions/create-folder.test.ts index 7a25749c1..2be7427d0 100755 --- a/e2e/suites/actions/create-folder.test.ts +++ b/e2e/suites/actions/create-folder.test.ts @@ -281,7 +281,7 @@ describe('Create folder', () => { .then(() => menu)) .then(menu => { const tooltip = menu.getItemTooltip('Create folder'); - expect(tooltip).toContain(`Folders cannot be created whilst viewing the current items.`); + expect(tooltip).toContain(`Folders cannot be created whilst viewing the current items`); }); }); }); diff --git a/e2e/suites/list-views/empty-list.test.ts b/e2e/suites/list-views/empty-list.test.ts index b6dfaee22..a9a8d8b43 100755 --- a/e2e/suites/list-views/empty-list.test.ts +++ b/e2e/suites/list-views/empty-list.test.ts @@ -65,7 +65,7 @@ describe('Empty list views', () => { .then(() => { expect(dataTable.isEmptyList()).toBe(true, 'list is not empty'); expect(dataTable.getEmptyStateTitle()).toContain(`You aren't a member of any File Libraries yet`); - expect(dataTable.getEmptyStateSubtitle()).toContain('Join sites to upload, view, and share files.'); + expect(dataTable.getEmptyStateSubtitle()).toContain('Join libraries to upload, view, and share files.'); }); });