From 627ace7702895c35f313d439c357e6387961d05a Mon Sep 17 00:00:00 2001 From: Jerome Foray Date: Mon, 23 Mar 2015 09:12:19 +0100 Subject: [PATCH] Remove realMode equality test on special bit test It has been shown in #62 this bit can be platform specific and is unreliable, testing fs.chmod is not called will be enough. --- test/dest.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/dest.js b/test/dest.js index 424781c5..2bab2cd6 100644 --- a/test/dest.js +++ b/test/dest.js @@ -743,7 +743,6 @@ describe('dest stream', function() { var onEnd = function(){ expectedCount.should.equal(1); should(chmodSpy.called).be.not.ok; - realMode(fs.lstatSync(expectedPath).mode).should.equal(expectedMode); done(); };