We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59b6968 commit 5316334Copy full SHA for 5316334
test/parallel/test-fs-readfile.js
@@ -54,6 +54,6 @@ for (const e of fileInfo) {
54
fs.readFile(e.name, common.mustCall((err, buf) => {
55
console.log(`Validating readFile on file ${e.name} of length ${e.len}`);
56
assert.ifError(err);
57
- assert.deepStrictEqual(buf, e.contents, 'Incorrect file contents');
+ assert.deepStrictEqual(buf, e.contents);
58
}));
59
}
0 commit comments