Skip to content

Commit

Permalink
Fix functional tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
nmalevanec committed Feb 18, 2019
1 parent c1f3f36 commit 7b8ec80
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ define([

if (!this.value()) {
defaultCountry = _.filter(result, function (item) {
return item['is_default'] && item['is_default'].includes(value);
return item['is_default'] && _.contains(item['is_default'], value);
});

if (defaultCountry.length) {
Expand Down

0 comments on commit 7b8ec80

Please sign in to comment.