Skip to content

Commit

Permalink
test: Update tests for new flights-200k file.
Browse files Browse the repository at this point in the history
  • Loading branch information
jheer committed Feb 5, 2025
1 parent 5116818 commit ed00391
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/format/load-file-url-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('load file url', () => {
it('loadArrow loads Arrow files from a URL', async () => {
const url = 'https://vega.github.io/vega-datasets/data/flights-200k.arrow';
const dt = await loadArrow(url);
assert.deepEqual([dt.numRows(), dt.numCols()], [231083, 3], 'load arrow table');
assert.deepEqual([dt.numRows(), dt.numCols()], [200000, 3], 'load arrow table');
});

it('fails on non-existent path', async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/format/load-url-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe('load url', () => {
it('loadArrow loads Arrow files from a URL', async () => {
const url = 'https://vega.github.io/vega-datasets/data/flights-200k.arrow';
const dt = await loadArrow(url);
assert.deepEqual([dt.numRows(), dt.numCols()], [231083, 3], 'load arrow table');
assert.deepEqual([dt.numRows(), dt.numCols()], [200000, 3], 'load arrow table');
});

it('fails on non-existent path', async () => {
Expand Down

0 comments on commit ed00391

Please sign in to comment.