Skip to content

Commit

Permalink
geosolutions-it#9325: fix failing test for GroupField file
Browse files Browse the repository at this point in the history
mahmoudadel54 committed Sep 12, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent af4ef9b commit 6617f80
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -122,7 +122,7 @@ describe('GroupField', () => {
const boolean = groupfield.getOperator({type: "boolean"});
expect(boolean).toEqual(["="]);
const noType = groupfield.getOperator();
expect(noType).toEqual(["=", ">", "<", ">=", "<=", "<>", "><"]);
expect(noType).toEqual(["=", ">", "<", ">=", "<=", "<>", "><", "isNull"]);

const noSelected = groupfield.getComboValues();
expect(noSelected).toBe(null);

0 comments on commit 6617f80

Please sign in to comment.