We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11509a8 commit a218422Copy full SHA for a218422
1 file changed
test/scripts/box/file.js
@@ -73,6 +73,8 @@ describe('File', () => {
73
file.stat((err, fileStats) => {
74
if (err) return callback(err);
75
76
+ //todo: cast dev to uint32 until https://github.com/nodejs/node/issues/16496 is resolved
77
+ fileStats.dev = (new Uint32Array([fileStats.dev]))[0]
78
fileStats.should.eql(fs.statSync(file.source));
79
callback();
80
});
0 commit comments