Skip to content

Commit

Permalink
Fix odd linting
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-cox committed Jun 27, 2023
1 parent 0716351 commit dce0a11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/po/components/toggle-switch.po.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ export default class ToggleSwitchPo extends ComponentPo {
}
})
.then(() => this.value())
.then(value => expect(value).equal(label));
.then((value) => expect(value).equal(label));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { CypressChainable } from '@/cypress/e2e/po/po.types';
* The rke create/edit page in this case is ember
*/
export default abstract class ClusterManagerCreateRKE1PagePo extends ClusterManagerCreatePagePo {
static url: string = '/c/local/manager/provisioning.cattle.io.cluster/create'
static url = '/c/local/manager/provisioning.cattle.io.cluster/create'

// Form
nameNsDescription(): NameNsDescription {
Expand Down

0 comments on commit dce0a11

Please sign in to comment.