Skip to content

Commit

Permalink
fix const vs let
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemmarsh committed May 12, 2016
1 parent 7213586 commit 488bccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulp/tasks/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ gulp.task('test', () => {

// Allow specification of a single test file
if ( argv.f || argv.file ) {
const singleFile = argv.f || argv.file;
let singleFile = argv.f || argv.file;

// Allow omission of directory and/or extension
if ( singleFile.indexOf('tests/') === -1 ) { singleFile = `tests/${singleFile}`; }
Expand Down

0 comments on commit 488bccd

Please sign in to comment.