Skip to content

Commit 9646b76

Browse files
committed
Reformat per linter warnings
1 parent 4f8359d commit 9646b76

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/unit_node/sqlite_test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -978,12 +978,12 @@ Deno.test("[node/sqlite] backup has correct name and length", () => {
978978
});
979979

980980
Deno.test("[node/sqlite] Database GC should not invalidate statements and sessions", () => {
981-
const db = new DatabaseSync(':memory:');
982-
const stmt = db.prepare(`SELECT 1`);
981+
const db = new DatabaseSync(":memory:");
982+
const stmt = db.prepare("SELECT 1");
983983
const sess = db.createSession();
984984
const a = [];
985985
for (let i = 0; i < 100; i++) {
986-
for (let i = 0; i < 1000000; i++) a.push(0); // Try to trigger GC
986+
for (let i = 0; i < 1000000; i++) a.push(0); // Try to trigger GC
987987
stmt.run();
988988
sess.changeset();
989989
}

0 commit comments

Comments
 (0)