From ec761d00eff7543928fd6e11e1373401554aa6dd Mon Sep 17 00:00:00 2001 From: Matt Colyer Date: Mon, 4 Nov 2013 14:53:43 -0800 Subject: [PATCH] Remove modified check on fixture file --- spec/spec-helper.coffee | 8 -------- 1 file changed, 8 deletions(-) diff --git a/spec/spec-helper.coffee b/spec/spec-helper.coffee index ed6050ddc..39a086e0d 100644 --- a/spec/spec-helper.coffee +++ b/spec/spec-helper.coffee @@ -279,11 +279,3 @@ $.fn.textInput = (data) -> event.initTextEvent('textInput', true, true, window, data) event = $.event.fix(event) $(this).trigger(event) - -if process.platform is 'win32' - unmodifiedHash = '15b13ffbc8d1c1ba5af845e5902ae67c' -else - unmodifiedHash = "dd38087d0d7e3e4802a6d3f9b9745f2b" - -unless fs.md5ForPath(require.resolve('./fixtures/sample.js')) is unmodifiedHash - throw new Error("Sample.js is modified")