Browse Source

Remove unnecessary line

v0.7.4-release
Ryan Dahl 13 years ago
parent
commit
3ce4adf3c6
  1. 1
      test/common.js

1
test/common.js

@ -56,7 +56,6 @@ exports.ddCommand = function(filename, kilobytes) {
if (process.platform == 'win32') { if (process.platform == 'win32') {
return 'fsutil.exe file createnew "' + filename + '" ' + (kilobytes * 1024); return 'fsutil.exe file createnew "' + filename + '" ' + (kilobytes * 1024);
} else { } else {
var blocks = Integer(size / 1024);
return 'dd if=/dev/zero of="' + filename + '" bs=1024 count=' + kilobytes; return 'dd if=/dev/zero of="' + filename + '" bs=1024 count=' + kilobytes;
} }
}; };

Loading…
Cancel
Save