Skip to content

Commit 95499e7

Browse files
author
Contra
committed
correct test for streaming files
1 parent b4a3cb7 commit 95499e7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/dest.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,7 @@ describe('gulp output stream', function() {
7575
rimraf(outpath, function(err){
7676
should.not.exist(err);
7777
var instream = gulp.src(join(__dirname, "./fixtures/**/*.txt"), {buffer:false});
78-
var outstream = gulp.dest(outpath);
79-
instream.pipe(outstream);
78+
var outstream = instream.pipe(gulp.dest(outpath));
8079

8180
outstream.on('error', done);
8281
outstream.on('data', function(file) {

0 commit comments

Comments
 (0)