Skip to content

Commit

Permalink
Fix grammar in e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
nwmac committed Jan 20, 2025
1 parent 8397f56 commit c26d8af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/tests/pages/explorer/apps/repositories.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});
});
Expand Down

0 comments on commit c26d8af

Please sign in to comment.