Skip to content
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.

Commit

Permalink
fix(glob-extra): replace isMasks to isMask
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Gafurov committed Oct 24, 2016
1 parent 63ccd81 commit 830be2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/test-reader/set-collection.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ module.exports = class SetCollection {
}

static _isAllFilesMasks(sets) {
return _.every(sets, (set) => globExtra.isMasks(set.files));
return _.every(sets, (set) => _.every(set.files, globExtra.isMask));
}

constructor(sets, opts) {
Expand Down

0 comments on commit 830be2e

Please sign in to comment.