Skip to content

Commit 446a513

Browse files
committed
test lint
1 parent 6b17afb commit 446a513

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,14 @@ suite('data binding and mapping', () => {
8585
const arrayBuffer = uint8Array.buffer;
8686
t.assert.deepStrictEqual(
8787
stmt.run(5, null, null, null, arrayBuffer),
88-
{ changes: 1, lastInsertRowid: 5 },
88+
{ changes: 1, lastInsertRowid: 5 }
8989
);
9090
t.assert.deepStrictEqual(
91-
query.get(5), {
92-
__proto__: null, key: 5, int: null, double: null, text: null, buf: uint8Array });
91+
query.get(5),
92+
{ __proto__: null, key: 5, int: null, double: null, text: null, buf: uint8Array }
93+
);
9394
});
9495

95-
96-
9796
test('large strings are bound correctly', (t) => {
9897
const db = new DatabaseSync(nextDb());
9998
t.after(() => { db.close(); });

0 commit comments

Comments
 (0)