diff --git a/playwright-tests/tests/admin.spec.ts b/playwright-tests/tests/admin.spec.ts index 07b3a8bd7..0b61ea783 100644 --- a/playwright-tests/tests/admin.spec.ts +++ b/playwright-tests/tests/admin.spec.ts @@ -1,15 +1,7 @@ -import { expect, test, Page } from '@playwright/test'; -import { beforeEach } from 'node:test'; +import { expect, Page, test } from '@playwright/test'; import { AuthProps } from '../helpers/types'; import { USERS } from '../helpers/users'; -import { - defaultLocalStorage, - defaultPageSetup, - emailDomain, - inituser, - startSessionWithUser, - saveAndPublish, -} from '../helpers/utils'; +import { defaultPageSetup } from '../helpers/utils'; const invalidEmail = 'Fake_Invalid_Email'; const testTokens = ['test token 1', 'test token 2', 'test token 3']; @@ -158,7 +150,7 @@ test.describe.serial('Admin:', () => { await page.getByRole('combobox', { name: 'Provider' }).click(); await page .getByRole('option', { - name: 'Amazon Simple Storage Service', + name: 'Amazon S3', }) .click(); await expect(page.getByLabel('Bucket *')).toBeVisible(); diff --git a/src/components/admin/Settings/StorageMappings/Dialog/useConfigurationSchema.ts b/src/components/admin/Settings/StorageMappings/Dialog/useConfigurationSchema.ts index efcda7df3..956463832 100644 --- a/src/components/admin/Settings/StorageMappings/Dialog/useConfigurationSchema.ts +++ b/src/components/admin/Settings/StorageMappings/Dialog/useConfigurationSchema.ts @@ -43,7 +43,7 @@ const gcsProviderSchema = { }; const s3ProviderSchema = { - title: 'Amazon Simple Storage Service.', + title: 'Amazon S3.', examples: [ { bucket: 'my-bucket', diff --git a/src/lang/en-US/AdminPage.ts b/src/lang/en-US/AdminPage.ts index 649c56068..04eee1859 100644 --- a/src/lang/en-US/AdminPage.ts +++ b/src/lang/en-US/AdminPage.ts @@ -164,7 +164,7 @@ export const AdminPage: Record = { 'storageMappings.dialog.generate.providerOption.AZURE': `Azure Object Storage Service`, 'storageMappings.dialog.generate.providerOption.CUSTOM': `An S3-compatible Endpoint`, 'storageMappings.dialog.generate.providerOption.GCS': `Google Cloud Storage`, - 'storageMappings.dialog.generate.providerOption.S3': `Amazon Simple Storage Service`, + 'storageMappings.dialog.generate.providerOption.S3': `Amazon S3`, 'storageMappings.dialog.generate.logsHeader': `Please wait while we save and apply your storage mapping.`, 'storageMappings.dialog.generate.error.republicationFailed': `There was an error republishing the entities in your system. Please try again.`, 'storageMappings.dialog.generate.error.unableToFetchLogs': `There was an issue fetching the logs when applying the new storage mapping. Please contact support to confirm that your system has been updated accordingly.`,