Skip to content

Commit dc18b64

Browse files
committed
test break line
1 parent 4d8fcc6 commit dc18b64

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

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

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,14 @@ suite('data binding and mapping', () => {
8181
buf: new Uint8Array(),
8282
});
8383

84-
t.assert.deepStrictEqual(stmt.run(5, true, false, true, null),
85-
{ changes: 1, lastInsertRowid: 5 });
86-
t.assert.deepStrictEqual(query.get(5),
87-
{ __proto__: null, key: 5, int: 1, double: 0, text: '1', buf: null });
84+
t.assert.deepStrictEqual(
85+
stmt.run(5, true, false, true, null),
86+
{ changes: 1, lastInsertRowid: 5 }
87+
);
88+
t.assert.deepStrictEqual(
89+
query.get(5),
90+
{ __proto__: null, key: 5, int: 1, double: 0, text: '1', buf: null }
91+
);
8892
});
8993

9094
test('large strings are bound correctly', (t) => {

0 commit comments

Comments
 (0)