diff --git a/src/Components/CreateImageWizard/formComponents/ReviewStep.js b/src/Components/CreateImageWizard/formComponents/ReviewStep.js index 86ad4af6..a0c6eef0 100644 --- a/src/Components/CreateImageWizard/formComponents/ReviewStep.js +++ b/src/Components/CreateImageWizard/formComponents/ReviewStep.js @@ -104,13 +104,13 @@ const ReviewStep = () => { )} {getState()?.values?.['target-environment']?.vsphere && ( - VMWare vSphere (.vmdk) + VMware vSphere (.vmdk) )} {getState()?.values?.['target-environment']?.['vsphere-ova'] && ( - VMWare vSphere (.ova) + VMware vSphere (.ova) )} diff --git a/src/Components/CreateImageWizard/formComponents/TargetEnvironment.js b/src/Components/CreateImageWizard/formComponents/TargetEnvironment.js index 60d1ea09..7a60a6e5 100644 --- a/src/Components/CreateImageWizard/formComponents/TargetEnvironment.js +++ b/src/Components/CreateImageWizard/formComponents/TargetEnvironment.js @@ -243,15 +243,15 @@ const TargetEnvironment = ({ label, isRequired, ...props }) => { data-testid="target-private" > { handleSetEnvironment('vsphere-ova', checked); handleSetEnvironment('vsphere', false); }} - aria-label="VMWare checkbox" + aria-label="VMware checkbox" id="checkbox-vmware" - name="VMWare" + name="VMware" data-testid="checkbox-vmware" /> @@ -264,7 +264,7 @@ const TargetEnvironment = ({ label, isRequired, ...props }) => { {allowedTargets.includes('vsphere-ova') && ( @@ -276,7 +276,7 @@ const TargetEnvironment = ({ label, isRequired, ...props }) => { An OVA file is a virtual appliance used by - virtualization platforms such as VMWare vSphere. It is + virtualization platforms such as VMware vSphere. It is a package that contains files used to describe a virtual machine, which includes a VMDK image, OVF descriptor file and a manifest file. @@ -299,7 +299,7 @@ const TargetEnvironment = ({ label, isRequired, ...props }) => { diff --git a/src/Components/CreateImageWizardV2/steps/ImageOutput/Environment.tsx b/src/Components/CreateImageWizardV2/steps/ImageOutput/Environment.tsx index bd845cbe..0d6c8e8d 100644 --- a/src/Components/CreateImageWizardV2/steps/ImageOutput/Environment.tsx +++ b/src/Components/CreateImageWizardV2/steps/ImageOutput/Environment.tsx @@ -256,7 +256,7 @@ const Environment = ({ setEnvironment, environment }: EnvironmentPropType) => { data-testid="target-private" > { handleSetEnvironment('vsphere-ova', checked); handleSetEnvironment('vsphere', false); }} - aria-label="VMWare checkbox" + aria-label="VMware checkbox" id="checkbox-vmware" - name="VMWare" + name="VMware" data-testid="checkbox-vmware" /> @@ -280,7 +280,7 @@ const Environment = ({ setEnvironment, environment }: EnvironmentPropType) => { {environment['vsphere-ova'].authorized && ( @@ -292,7 +292,7 @@ const Environment = ({ setEnvironment, environment }: EnvironmentPropType) => { An OVA file is a virtual appliance used by - virtualization platforms such as VMWare vSphere. It is + virtualization platforms such as VMware vSphere. It is a package that contains files used to describe a virtual machine, which includes a VMDK image, OVF descriptor file and a manifest file. @@ -320,7 +320,7 @@ const Environment = ({ setEnvironment, environment }: EnvironmentPropType) => { diff --git a/src/Components/ImagesTable/Target.tsx b/src/Components/ImagesTable/Target.tsx index f6ec2432..a5e584e7 100644 --- a/src/Components/ImagesTable/Target.tsx +++ b/src/Components/ImagesTable/Target.tsx @@ -16,8 +16,8 @@ const targetOptions: { [key in ImageTypes]: string } = { gcp: 'Google Cloud Platform', 'guest-image': 'Virtualization - Guest image', 'image-installer': 'Bare metal - Installer', - vsphere: 'VMWare vSphere', - 'vsphere-ova': 'VMWare vSphere', + vsphere: 'VMware vSphere', + 'vsphere-ova': 'VMware vSphere', wsl: 'Windows Subsystem for Linux', ami: 'Amazon Web Services', 'rhel-edge-commit': 'RHEL Edge Commit', diff --git a/src/test/Components/CreateImageWizard/CreateImageWizard.test.js b/src/test/Components/CreateImageWizard/CreateImageWizard.test.js index 5b1ca0b3..19814df5 100644 --- a/src/test/Components/CreateImageWizard/CreateImageWizard.test.js +++ b/src/test/Components/CreateImageWizard/CreateImageWizard.test.js @@ -1184,7 +1184,7 @@ describe('Click through all steps', () => { await user.click(targetEnvironmentsExpandable); await screen.findAllByText('AWS'); await screen.findAllByText('GCP'); - await screen.findByText('VMWare vSphere (.ova)'); + await screen.findByText('VMware vSphere (.ova)'); await screen.findByText('Virtualization - Guest image (.qcow2)'); await screen.findByText('Bare metal - Installer (.iso)');