diff --git a/test/functional/page_objects/dashboard_page.ts b/test/functional/page_objects/dashboard_page.ts index b9f15ae885237..b8b1da9ddc2a6 100644 --- a/test/functional/page_objects/dashboard_page.ts +++ b/test/functional/page_objects/dashboard_page.ts @@ -560,9 +560,7 @@ export class DashboardPageObject extends FtrService { // use the search filter box to narrow the results down to a single // entry, or at least to a single page of results - public async loadSavedDashboard( - dashboardName: string - ) { + public async loadSavedDashboard(dashboardName: string) { this.log.debug(`Load Saved Dashboard ${dashboardName}`); await this.gotoDashboardLandingPage(); diff --git a/test/functional/page_objects/time_picker.ts b/test/functional/page_objects/time_picker.ts index 3e72f7cf96d0a..be43b0d2b29ec 100644 --- a/test/functional/page_objects/time_picker.ts +++ b/test/functional/page_objects/time_picker.ts @@ -129,11 +129,7 @@ export class TimePickerPageObject extends FtrService { * @param {String} toTime MMM D, YYYY @ HH:mm:ss.SSS * @param {Boolean} force time picker force update, default is false */ - public async setAbsoluteRange( - fromTime: string, - toTime: string, - force = false - ) { + public async setAbsoluteRange(fromTime: string, toTime: string, force = false) { if (!force) { const currentUrl = decodeURI(await this.browser.getCurrentUrl()); const DEFAULT_DATE_FORMAT = 'MMM D, YYYY @ HH:mm:ss.SSS';