Skip to content

Commit

Permalink
Fix stylelint errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmeyer2115 committed Jun 10, 2021
1 parent c51dd2a commit a78d4a1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/core/filters/filterregistry.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,7 @@ describe('FilterRegistry', () => {
});
});


it('createFacetsFromFilterNodes', () => {
it('_createFacetsFromFilterNodes', () => {
registry.setFacetFilterNodes(['random_field', 'another_field'], [node1, node2]);
const expectedFacets = {
another_field: [],
Expand All @@ -311,7 +310,7 @@ describe('FilterRegistry', () => {
});

it('getFacets uses FACET_FILTER_NODES if they exist', () => {
registry.setFacetFilterNodes([ 'random_field', 'another_field' ], [node1, node2]);
registry.setFacetFilterNodes(['random_field', 'another_field'], [node1, node2]);
const persistedFacets = {
c_employeeDepartment: [
{
Expand Down

0 comments on commit a78d4a1

Please sign in to comment.