Skip to content

Commit

Permalink
move the log.debug line
Browse files Browse the repository at this point in the history
  • Loading branch information
tsullivan committed May 18, 2020
1 parent aa4108b commit 62ff1aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x-pack/test/reporting_api_integration/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ export function ReportingAPIProvider({ getService }: FtrProviderContext) {
},

async deleteAllReports() {
log.debug('ReportingAPI.deleteAllReports');

// ignores 409 errs and keeps retrying
const deleted$ = Rx.interval(100).pipe(
switchMap(() =>
Expand All @@ -146,8 +148,6 @@ export function ReportingAPIProvider({ getService }: FtrProviderContext) {

const reportsDeleted = await deleted$.toPromise();
expect(reportsDeleted).to.be(true);

log.debug('ReportingAPI.deleteAllReports');
},

expectRecentPdfAppStats(stats: UsageStats, app: string, count: number) {
Expand Down

0 comments on commit 62ff1aa

Please sign in to comment.