Skip to content

Commit 5c6c0b5

Browse files
committed
test quote
1 parent 8d8df52 commit 5c6c0b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-sqlite-data-types.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ suite('data binding and mapping', () => {
9393
buf: null,
9494
});
9595

96-
const insertNamedParams = db.prepare(`INSERT INTO types VALUES ($key, $int, $double, $text, $buf)`);
96+
const insertNamedParams = db.prepare('INSERT INTO types VALUES ($key, $int, $double, $text, $buf)');
9797
const params = { key: 6, int: undefined, double: undefined, text: undefined, buf: undefined };
9898
t.assert.deepStrictEqual(insertNamedParams.run(params), { changes: 1, lastInsertRowid: 6 });
9999
t.assert.deepStrictEqual(insertNamedParams.run({ key: 7 }), { changes: 1, lastInsertRowid: 7 });

0 commit comments

Comments
 (0)