Skip to content

Commit

Permalink
suggested changes to failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tiyiprh committed Jul 18, 2024
1 parent 5f88e09 commit 3e8037e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/awx/administration/credentialTypes.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ describe('Credential Types', () => {
injectorCredType,
'json'
);
cy.verifyPageTitle('Create credential type');
cy.verifyPageTitle('Credential Types');
});

it('creates a custom credential type with input and injector configurations in YAML format in the Monaco editor', () => {
Expand All @@ -156,7 +156,7 @@ describe('Credential Types', () => {
inputCredType,
injectorCredType
);
cy.verifyPageTitle('Create credential type');
cy.verifyPageTitle('Credential Types');
});
});

Expand Down
2 changes: 1 addition & 1 deletion cypress/support/awx-commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ Cypress.Commands.add(
const credentialTypeDesc = 'This is a custom credential type that is not managed';
cy.navigateTo('awx', 'credential-types');
cy.clickLink(/^Create credential type$/);
cy.verifyPageTitle('Create Credential Type');
cy.verifyPageTitle('Create credential type');
cy.url().then((currentUrl) => {
expect(currentUrl.includes('/credential-types/create')).to.be.true;
});
Expand Down

0 comments on commit 3e8037e

Please sign in to comment.