Skip to content

Commit 8349aa7

Browse files
committed
style: fix biome formatting in schema test
1 parent 0ad311c commit 8349aa7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/lib/db/schema.test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -386,9 +386,9 @@ describe("repairSchema: wrong primary key", () => {
386386

387387
const result = repairSchema(db);
388388

389-
expect(
390-
result.fixed.some((f) => f.includes("pagination_cursors"))
391-
).toBe(true);
389+
expect(result.fixed.some((f) => f.includes("pagination_cursors"))).toBe(
390+
true
391+
);
392392
expect(result.failed).toEqual([]);
393393

394394
const row = db
@@ -407,9 +407,9 @@ describe("repairSchema: wrong primary key", () => {
407407
const result = repairSchema(db);
408408

409409
// Should not report pagination_cursors as fixed
410-
expect(
411-
result.fixed.some((f) => f.includes("pagination_cursors"))
412-
).toBe(false);
410+
expect(result.fixed.some((f) => f.includes("pagination_cursors"))).toBe(
411+
false
412+
);
413413
db.close();
414414
});
415415
});

0 commit comments

Comments
 (0)