From 3ce4adf3c6bd73fcd8de93a5bbaf8bdb321d43af Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 9 Aug 2011 18:05:50 -0700 Subject: [PATCH] Remove unnecessary line --- test/common.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/common.js b/test/common.js index aea21b2cc2..2486724040 100644 --- a/test/common.js +++ b/test/common.js @@ -56,7 +56,6 @@ exports.ddCommand = function(filename, kilobytes) { if (process.platform == 'win32') { return 'fsutil.exe file createnew "' + filename + '" ' + (kilobytes * 1024); } else { - var blocks = Integer(size / 1024); return 'dd if=/dev/zero of="' + filename + '" bs=1024 count=' + kilobytes; } };