Skip to content

Commit

Permalink
fix test for using file in dirrectory
Browse files Browse the repository at this point in the history
  • Loading branch information
e1arikawa committed Nov 14, 2024
1 parent a63b91d commit ad9b192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/duckdb-wasm/test/opfs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ export function testOPFS(baseDir: string, bundle: () => duckdb.DuckDBBundle): vo
await opfsRoot.removeEntry('test.parquet').catch(() => {
});
try {
let datadir = await opfsRoot.getDirectoryHandle('datadir');
const datadir = await opfsRoot.getDirectoryHandle('datadir');
datadir.removeEntry('test.parquet').catch(() => {
});
} catch (e) {
Expand Down

0 comments on commit ad9b192

Please sign in to comment.