Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
#450 Fixing unrelated jshint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
reblace committed Mar 7, 2015
1 parent ffde5e8 commit b61d6a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ gulp.task('mocha', function (done) {
error = err;
}).on('end', function() {
// When the tests are done, disconnect mongoose and pass the error state back to gulp
mongoose.disconnect(function(){
mongoose.disconnect(function() {
done(error);
});
});
Expand All @@ -155,11 +155,11 @@ gulp.task('webdriver-update', plugins.protractor.webdriver_update);
gulp.task('protractor', function () {
gulp.src([])
.pipe(plugins.protractor.protractor({
configFile: "protractor.conf.js"
configFile: 'protractor.conf.js'
}))
.on('error', function (e) {
throw e
})
throw e;
});
});

// Lint CSS and JavaScript files.
Expand Down

0 comments on commit b61d6a7

Please sign in to comment.