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
Next Next commit
fixup! fixup! fixup! test: refactor common.ddCommand()
  • Loading branch information
Trott committed Oct 10, 2018
commit bf4f33cc7932a985c8294d936d7a5709dc470d66
2 changes: 1 addition & 1 deletion test/common/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function childShouldThrowAndAbort() {

function createZeroFilledFile(filename) {
const fd = fs.openSync(filename, 'w');
fs.ftruncateSync(fd, 10240 * 1024);
fs.ftruncateSync(fd, 10 * 1024 * 1024);
fs.closeSync(fd);
}

Expand Down