Skip to content

Commit

Permalink
quick test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stephmilovic committed Apr 27, 2023
1 parent 5794a3c commit 33b4153
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

import type { GroupingQueryArgs } from './types';
import { getGroupingQuery, parseGroupingQuery } from '.';
import { getEmptyValue } from './helpers';

const testProps: GroupingQueryArgs = {
additionalFilters: [],
Expand Down Expand Up @@ -185,8 +186,8 @@ describe('group selector', () => {
doc_count: 75,
},
{
key: ['-'],
key_as_string: '-',
key: [getEmptyValue()],
key_as_string: getEmptyValue(),
isNullGroup: true,
doc_count: 75,
},
Expand Down

0 comments on commit 33b4153

Please sign in to comment.