Skip to content

Commit e5e6fd5

Browse files
committed
Removed directory (unnecessary)
1 parent c504c55 commit e5e6fd5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/Test-FileStore.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ describe('FileStore', () => {
146146
});
147147

148148
it('should open a stream and resolve the new offset', (done) => {
149-
const file_store = new FileStore({ path: STORE_PATH, directory: FILES_DIRECTORY });
149+
const file_store = new FileStore({ path: STORE_PATH });
150+
// const file_store = new FileStore({ path: STORE_PATH, directory: FILES_DIRECTORY });
150151
const write_stream = fs.createReadStream(TEST_FILE_PATH);
151152
write_stream.once('open', () => {
152153
file_store.write(write_stream, TEST_FILE_NAME, 0)

0 commit comments

Comments
 (0)