From 62df5a78ea1144a8f7094a31ce9fc0b90d1de646 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=C3=A1ng=20J=C3=B9nli=C3=A0ng?= Date: Wed, 6 Dec 2017 22:51:49 +0800 Subject: [PATCH] Revert "hotfix(file): cast dev to uint32" This reverts commit a2184229232a9893179b43475f344c556ec4d956. Since https://github.com/nodejs/node/pull/16705 is merged, the hotfix is unecessary. --- test/scripts/box/file.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/scripts/box/file.js b/test/scripts/box/file.js index 6bd04809c0..f7f2a283df 100644 --- a/test/scripts/box/file.js +++ b/test/scripts/box/file.js @@ -73,8 +73,6 @@ describe('File', () => { file.stat((err, fileStats) => { if (err) return callback(err); - //todo: cast dev to uint32 until https://github.com/nodejs/node/issues/16496 is resolved - fileStats.dev = (new Uint32Array([fileStats.dev]))[0]; fileStats.should.eql(fs.statSync(file.source)); callback(); });