Skip to content

Commit

Permalink
update jest test
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarezmelissa87 committed Jan 28, 2021
1 parent 4b8124d commit 4fed952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/plugins/ml/common/util/job_utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,6 @@ describe('ML - job utils', () => {
expect(isSourceDataChartableForDetector(job, 22)).toBe(true);
expect(isSourceDataChartableForDetector(job, 23)).toBe(true);
expect(isSourceDataChartableForDetector(job, 24)).toBe(true);
expect(isSourceDataChartableForDetector(job, 36)).toBe(true);
expect(isSourceDataChartableForDetector(job, 37)).toBe(true);
});

Expand All @@ -297,6 +296,7 @@ describe('ML - job utils', () => {
expect(isSourceDataChartableForDetector(job, 33)).toBe(false);
expect(isSourceDataChartableForDetector(job, 34)).toBe(false);
expect(isSourceDataChartableForDetector(job, 35)).toBe(false);
expect(isSourceDataChartableForDetector(job, 36)).toBe(false);
});
});

Expand Down

0 comments on commit 4fed952

Please sign in to comment.