Browse Source

Remove toJSON usage - it was removed from V8

v0.7.4-release
Ryan Dahl 14 years ago
parent
commit
d1f36accbf
  1. 8
      test/simple/test-fs-write.js

8
test/simple/test-fs-write.js

@ -21,8 +21,8 @@ fs.open(fn, 'w', 0644, function(err, fd) {
assert.equal(Buffer.byteLength(expected), written);
fs.closeSync(fd);
found = fs.readFileSync(fn, 'utf8');
console.log('expected: ' + expected.toJSON());
console.log('found: ' + found.toJSON());
console.log('expected: "%s"', expected);
console.log('found: "%s"', found);
fs.unlinkSync(fn);
});
});
@ -41,8 +41,8 @@ fs.open(fn2, constants.O_CREAT | constants.O_WRONLY | constants.O_TRUNC, 0644,
assert.equal(Buffer.byteLength(expected), written);
fs.closeSync(fd);
found2 = fs.readFileSync(fn2, 'utf8');
console.log('expected: ' + expected.toJSON());
console.log('found: ' + found2.toJSON());
console.log('expected: "%s"', expected);
console.log('found: "%s"', found2);
fs.unlinkSync(fn2);
});
});

Loading…
Cancel
Save