Skip to content

Commit

Permalink
Revert "hotfix(file): cast dev to uint32"
Browse files Browse the repository at this point in the history
This reverts commit a218422.

Since nodejs/node#16705 is merged, the hotfix is unecessary.
  • Loading branch information
JLHwung committed Dec 7, 2017
1 parent dee3b03 commit 62df5a7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/scripts/box/file.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});
Expand Down

0 comments on commit 62df5a7

Please sign in to comment.