Skip to content

Commit

Permalink
fix copy typogit status
Browse files Browse the repository at this point in the history
  • Loading branch information
coliu-akamai committed Oct 23, 2024
1 parent cedba1c commit 4eea804
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1351,7 +1351,7 @@ describe('LKE cluster updates', () => {
});
});

describe('LKE ACL updates', () => {
describe.only('LKE ACL updates', () => {
const mockCluster = kubernetesClusterFactory.build();
const mockRevisionId = randomString(20);

Expand Down Expand Up @@ -1461,7 +1461,7 @@ describe('LKE ACL updates', () => {
// confirm Revision ID section and edit Revision ID
cy.findAllByText('Revision ID').should('have.length', 2);
cy.contains(
'A unique identifing string for this particular revision to the ACL, used by clients to track events related to ACL update requests and enforcement. This defaults to a randomly generated string but can be edited if you prefer to specify your own string to use for tracking this change.'
'A unique identifying string for this particular revision to the ACL, used by clients to track events related to ACL update requests and enforcement. This defaults to a randomly generated string but can be edited if you prefer to specify your own string to use for tracking this change.'
).should('be.visible');
cy.findByLabelText('Revision ID').should(
'have.value',
Expand Down Expand Up @@ -1685,7 +1685,7 @@ describe('LKE ACL updates', () => {
// confirm Revision ID section exists
cy.findAllByText('Revision ID').should('have.length', 2);
cy.contains(
'A unique identifing string for this particular revision to the ACL, used by clients to track events related to ACL update requests and enforcement. This defaults to a randomly generated string but can be edited if you prefer to specify your own string to use for tracking this change.'
'A unique identifying string for this particular revision to the ACL, used by clients to track events related to ACL update requests and enforcement. This defaults to a randomly generated string but can be edited if you prefer to specify your own string to use for tracking this change.'
).should('be.visible');
cy.findByLabelText('Revision ID').should(
'have.value',
Expand Down Expand Up @@ -1824,7 +1824,7 @@ describe('LKE ACL updates', () => {
// Confirm revision ID section does not exist
cy.contains('Revision ID').should('not.exist');
cy.contains(
'A unique identifing string for this particular revision to the ACL, used by clients to track events related to ACL update requests and enforcement. This defaults to a randomly generated string but can be edited if you prefer to specify your own string to use for tracking this change.'
'A unique identifying string for this particular revision to the ACL, used by clients to track events related to ACL update requests and enforcement. This defaults to a randomly generated string but can be edited if you prefer to specify your own string to use for tracking this change.'
).should('not.exist');

// Confirm Addresses section and add IP addresses
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ export const KubeControlPlaneACLDrawer = (props: Props) => {
<>
<Typography variant="h3">Revision ID</Typography>
<StyledTypography variant="body1">
A unique identifing string for this particular revision to the
ACL, used by clients to track events related to ACL update
A unique identifying string for this particular revision to
the ACL, used by clients to track events related to ACL update
requests and enforcement. This defaults to a randomly
generated string but can be edited if you prefer to specify
your own string to use for tracking this change.
Expand Down

0 comments on commit 4eea804

Please sign in to comment.