Skip to content

Commit

Permalink
Fixes permissions that are slightly different
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankHassanabad committed Feb 3, 2021
1 parent 0915df7 commit af62e77
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default ({ getService }: FtrProviderContext) => {
const { body } = await supertest.get(DETECTION_ENGINE_PRIVILEGES_URL).send().expect(200);
expect(body).to.eql({
username: 'elastic',
has_all_requested: true,
has_all_requested: false,
cluster: {
monitor_ml: true,
manage_ccr: true,
Expand All @@ -30,7 +30,7 @@ export default ({ getService }: FtrProviderContext) => {
read_ilm: true,
manage_api_key: true,
manage_security: true,
manage_own_api_key: true,
manage_own_api_key: false,
manage_saml: true,
all: true,
manage_ilm: true,
Expand Down

0 comments on commit af62e77

Please sign in to comment.