From 2bb0bb81575848e122636d2d1241217e0851f63f Mon Sep 17 00:00:00 2001 From: Gromych Date: Fri, 4 Mar 2016 19:48:01 +0300 Subject: [PATCH] Removes more reduntant parameters from vinyl initialization --- test/main.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/main.js b/test/main.js index 134a860..91ae8c2 100644 --- a/test/main.js +++ b/test/main.js @@ -177,8 +177,6 @@ describe('gulp-replace', function() { it('should ignore binary files when skipBinary is enabled', function(done) { var file = new File({ path: 'test/fixtures/binary.png', - cwd: 'test/', - base: 'test/fixtures', contents: fs.readFileSync('test/fixtures/binary.png') }); @@ -194,8 +192,6 @@ describe('gulp-replace', function() { it('should replace string on non binary files when skipBinary is enabled', function(done) { var file = new File({ path: 'test/fixtures/helloworld.txt', - cwd: 'test/', - base: 'test/fixtures', contents: fs.createReadStream('test/fixtures/helloworld.txt') });