Skip to content

Commit

Permalink
Fix ESLint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecote committed Feb 6, 2020
1 parent c02533c commit d815215
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions x-pack/legacy/plugins/alerting/server/alerts_client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2289,7 +2289,6 @@ describe('update()', () => {
test('updating the alert schedule should rerun the task immediately', async () => {
const alertId = uuid.v4();
const taskId = uuid.v4();
const alertsClient = new AlertsClient(alertsClientParams);

mockApiCalls(alertId, taskId, { interval: '60m' }, { interval: '10s' });

Expand Down Expand Up @@ -2320,7 +2319,6 @@ describe('update()', () => {
test('updating the alert without changing the schedule should not rerun the task', async () => {
const alertId = uuid.v4();
const taskId = uuid.v4();
const alertsClient = new AlertsClient(alertsClientParams);

mockApiCalls(alertId, taskId, { interval: '10s' }, { interval: '10s' });

Expand Down Expand Up @@ -2351,7 +2349,6 @@ describe('update()', () => {
test('updating the alert should not wait for the rerun the task to complete', async done => {
const alertId = uuid.v4();
const taskId = uuid.v4();
const alertsClient = new AlertsClient(alertsClientParams);

mockApiCalls(alertId, taskId, { interval: '10s' }, { interval: '30s' });

Expand Down Expand Up @@ -2390,7 +2387,6 @@ describe('update()', () => {
test('logs when the rerun of an alerts underlying task fails', async () => {
const alertId = uuid.v4();
const taskId = uuid.v4();
const alertsClient = new AlertsClient(alertsClientParams);

mockApiCalls(alertId, taskId, { interval: '10s' }, { interval: '30s' });

Expand Down

0 comments on commit d815215

Please sign in to comment.