Skip to content

Commit fe369e6

Browse files
committed
Changes from node scripts/eslint_all_files --no-cache --fix
1 parent 6736987 commit fe369e6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/platform/packages/shared/kbn-eval-kql/src/eval_kql.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -337,9 +337,9 @@ describe('evaluateKql', () => {
337337
const kql = 'timestamp > now-7d';
338338
// now-7d is 2025-01-08T12:00:00Z
339339
expect(evaluateKql(kql, { timestamp: '2025-01-09T00:00:00.000Z' })).toBe(true);
340-
expect(
341-
evaluateKql(kql, { timestamp: dateMath.parse('now-7d')!.toISOString() })
342-
).toBe(false);
340+
expect(evaluateKql(kql, { timestamp: dateMath.parse('now-7d')!.toISOString() })).toBe(
341+
false
342+
);
343343
});
344344

345345
it('should evaluate <= with datemath on the right side', () => {

0 commit comments

Comments
 (0)