Skip to content

Commit

Permalink
fix: fixed Logger functions
Browse files Browse the repository at this point in the history
Signed-off-by: mdolhalo <[email protected]>
  • Loading branch information
mdolhalo committed Aug 25, 2023
1 parent 1d09cb7 commit 4e5fa1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/pageobjects/openshift/OcpImportFromGitPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ export class OcpImportFromGitPage {
}

async submitConfiguration(): Promise<OcpApplicationPage> {
Logger.debug(`${this.constructor.name}.${this.submitConfiguration.name}`);
Logger.debug();

await this.driverHelper.waitAndClick(OcpImportFromGitPage.SUBMIT_BUTTON_LOCATOR);
return e2eContainer.get(CLASSES.OcpApplicationPage);
}

async fitAndSubmitConfiguration(gitRepoUrl: string, gitReference: string, label: string): Promise<OcpApplicationPage> {
Logger.debug(`${this.constructor.name}.${this.fitAndSubmitConfiguration.name}`);
Logger.debug();

await this.enterGitRepoUrl(gitRepoUrl);
await this.clickOnAdvancedOptionsButton();
Expand Down

0 comments on commit 4e5fa1f

Please sign in to comment.