Skip to content

Commit 1293b1b

Browse files
ci: apply automated fixes
1 parent ab5bcc9 commit 1293b1b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/db/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@
5959
"superjson": "^2.2.6",
6060
"temporal-polyfill": "^0.3.0"
6161
}
62-
}
62+
}

packages/db/tests/query/compiler/evaluators.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -511,12 +511,12 @@ describe(`evaluators`, () => {
511511
// They are different object instances but represent the same moment
512512
const date1 = new Date(`2024-01-15T10:30:45.123Z`)
513513
const date2 = new Date(`2024-01-15T10:30:45.123Z`)
514-
514+
515515
// Verify they are different object references
516516
expect(date1).not.toBe(date2)
517517
// But they have the same time value
518518
expect(date1.getTime()).toBe(date2.getTime())
519-
519+
520520
const func = new Func(`eq`, [new Value(date1), new Value(date2)])
521521
const compiled = compileExpression(func)
522522

@@ -528,7 +528,7 @@ describe(`evaluators`, () => {
528528
it(`handles eq with Date objects with different times`, () => {
529529
const date1 = new Date(`2024-01-15T10:30:45.123Z`)
530530
const date2 = new Date(`2024-01-15T10:30:45.124Z`) // 1ms later
531-
531+
532532
const func = new Func(`eq`, [new Value(date1), new Value(date2)])
533533
const compiled = compileExpression(func)
534534

0 commit comments

Comments
 (0)