Skip to content

Commit f599649

Browse files
committed
please linter
1 parent d959e99 commit f599649

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

  • x-pack/platform/plugins/shared/alerting_v2/server/lib/dispatcher/integration_tests

x-pack/platform/plugins/shared/alerting_v2/server/lib/dispatcher/integration_tests/dispatcher.test.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,15 +232,19 @@ async function cleanupDataStreams(esClient: ElasticsearchClient): Promise<void>
232232
query: { match_all: {} },
233233
refresh: true,
234234
});
235-
} catch (error) {}
235+
} catch (error) {
236+
// noop
237+
}
236238

237239
try {
238240
await esClient.deleteByQuery({
239241
index: ALERT_ACTIONS_DATA_STREAM,
240242
query: { match_all: {} },
241243
refresh: true,
242244
});
243-
} catch (error) {}
245+
} catch (error) {
246+
// noop
247+
}
244248
}
245249

246250
async function seedAlertEvents(

0 commit comments

Comments
 (0)