Skip to content

Commit

Permalink
test: little fix of consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
viladimiru committed Nov 13, 2024
1 parent 80d711f commit 6c64b51
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ test('should suggest properly after UNION', () => {
UNION |
`);

expect(autocompleteResult.suggestKeywords).toEqual([{value: 'ALL'}, {value: 'DISTINCT'}]);
const keywordsSuggestion: KeywordSuggestion[] = [{value: 'ALL'}, {value: 'DISTINCT'}];
expect(autocompleteResult.suggestKeywords).toEqual(keywordsSuggestion);
});

test('should not report errors on multiple intersect clause', () => {
Expand Down

0 comments on commit 6c64b51

Please sign in to comment.