Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test: test-file-write-stream3.js refactor
  • Loading branch information
Richard Karmazin committed Dec 5, 2016
commit d40d62cbfbc24fdc55a9046c33946086b3b82150
4 changes: 2 additions & 2 deletions test/parallel/test-file-write-stream3.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function run_test_2() {
const buffer = Buffer.from('123456');

const options = { start: 10,
flags: 'r+' };
flags: 'r+' };
const file = fs.createWriteStream(filepath, options);
console.log(' (debug: start ', file.start);
console.log(' (debug: pos ', file.pos);
Expand Down Expand Up @@ -117,7 +117,7 @@ function run_test_3() {
const data = '\u2026\u2026'; // 3 bytes * 2 = 6 bytes in UTF-8

const options = { start: 10,
flags: 'r+' };
flags: 'r+' };
const file = fs.createWriteStream(filepath, options);
console.log(' (debug: start ', file.start);
console.log(' (debug: pos ', file.pos);
Expand Down