Skip to content

Commit

Permalink
fix string filtering tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sc1f authored and texodus committed Jun 24, 2020
1 parent 8b9ee5d commit 8820308
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ describe(DomElement, () => {
});

test("the first value, null values, and undefined values are filtered out", () => {
expect(dom_element._autocomplete_choices(json_choices)).toEqual([["somestring"], ["otherstring"]]);
expect(dom_element._autocomplete_choices(json_choices)).toEqual(["somestring", "otherstring"]);
});
});
});

0 comments on commit 8820308

Please sign in to comment.