diff --git a/cypress/e2e/tests/pages/explorer/apps/repositories.spec.ts b/cypress/e2e/tests/pages/explorer/apps/repositories.spec.ts index 54fcebbd336..49d8d9919b4 100644 --- a/cypress/e2e/tests/pages/explorer/apps/repositories.spec.ts +++ b/cypress/e2e/tests/pages/explorer/apps/repositories.spec.ts @@ -147,9 +147,9 @@ describe('Apps', () => { appRepoCreate.ociMaxRetries().should('be.empty'); // check auth dropdown not to have SSH key option when oci is selected appRepoCreate.authSelectOrCreate().authSelect().toggle(); - appRepoCreate.authSelectOrCreate().authSelect().getOptions().contains('Create a HTTP Basic Auth Secret') + appRepoCreate.authSelectOrCreate().authSelect().getOptions().contains('Create an HTTP Basic Auth Secret') .should('exist'); - appRepoCreate.authSelectOrCreate().authSelect().getOptions().contains('Create a SSH Key Secret') + appRepoCreate.authSelectOrCreate().authSelect().getOptions().contains('Create an SSH Key Secret') .should('not.exist'); }); });