fix: Fix minor typos (#2619)

Signed-off-by: Marcel Ribeiro-Dantas <mribeirodantas@seqera.io>
Co-authored-by: Ilkka Seppälä <iluwatar@users.noreply.github.com>
This commit is contained in:
Marcel Ribeiro-Dantas
2023-10-14 12:59:21 -03:00
committed by GitHub
parent be0d5e5953
commit f79782bea9
30 changed files with 43 additions and 42 deletions
@@ -61,7 +61,7 @@ public class AlbumPage extends Page {
try {
page = this.webClient.getPage(PAGE_URL);
} catch (IOException e) {
LOGGER.error("An error occured on navigateToPage.", e);
LOGGER.error("An error occurred on navigateToPage.", e);
}
return this;
}
@@ -151,7 +151,7 @@ public class AlbumPage extends Page {
try {
cancelButton.click();
} catch (IOException e) {
LOGGER.error("An error occured on cancelChanges.", e);
LOGGER.error("An error occurred on cancelChanges.", e);
}
return new AlbumListPage(webClient);
}
@@ -167,7 +167,7 @@ public class AlbumPage extends Page {
try {
saveButton.click();
} catch (IOException e) {
LOGGER.error("An error occured on saveChanges.", e);
LOGGER.error("An error occurred on saveChanges.", e);
}
return this;
}