Skip to content

Commit

Permalink
Merge pull request #43 from pelias/fix_lodash_usage
Browse files Browse the repository at this point in the history
Use _.uniq, since _.unique has been depricated
  • Loading branch information
orangejulius committed Mar 23, 2016
2 parents 2e6a546 + 70052bf commit 992645a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/gather_test_urls.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function gatherTestSuiteURLs( config, testSuite ){
}

function gatherTestURLs(config, testSuites) {
return _.unique(_.flatten(testSuites.map(function(testSuite) {
return _.uniq(_.flatten(testSuites.map(function(testSuite) {
return gatherTestSuiteURLs(config, testSuite);
})));
}
Expand Down

0 comments on commit 992645a

Please sign in to comment.