Skip to content

Commit

Permalink
geosolutions-it#9510: fix a failure in UI test in rulesanager-test file
Browse files Browse the repository at this point in the history
  • Loading branch information
mahmoudadel54 committed Oct 4, 2023
1 parent d31974f commit 9b31b36
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions web/client/selectors/__tests__/rulesmanager-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,21 @@ describe('test rules manager selectors', () => {
const rules = rulesSelector(state);
expect(rules.length).toBe(1);
expect(rules[0]).toEqual({
id: "rules1",
id: 'rules1',
priority: 1,
roleName: "role1",
userName: "*",
service: "*",
request: "*",
workspace: "*",
layer: "*",
access: "ALLOW"
roleName: 'role1',
groupAny: '*',
userName: '*',
userAny: '*',
service: '*',
serviceAny: '*',
request: '*',
requestAny: '*',
workspace: '*',
workspaceAny: '*',
layer: '*',
layerAny: '*',
access: 'ALLOW'
});
});

Expand Down

0 comments on commit 9b31b36

Please sign in to comment.