Skip to content

Commit

Permalink
test: Update node duckdb test.
Browse files Browse the repository at this point in the history
  • Loading branch information
jheer committed Feb 23, 2024
1 parent 7b14a90 commit c74a792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/duckdb/test/duckdb-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('DuckDB', () => {
describe('loadArrow', () => {
it('loads an arrow ipc buffer', async () => {
await loadArrow(db, 'arrow', await db.arrowBuffer('SELECT * FROM penguins'));
const res = await db.query('SELECT count() AS count FROM arrow');
const res = await db.query('SELECT count()::INTEGER AS count FROM arrow');
assert.strictEqual(res[0]?.count, 342);
await db.exec('DROP VIEW arrow');
});
Expand Down

0 comments on commit c74a792

Please sign in to comment.