Skip to content

Commit

Permalink
Fix and unskip functional test
Browse files Browse the repository at this point in the history
  • Loading branch information
jportner committed Mar 31, 2021
1 parent 0cdf445 commit ae42135
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x-pack/test/functional/apps/security/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function ({ getService, getPageObjects }) {
const log = getService('log');

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/96001
describe.skip('users', function () {
describe('users', function () {
before(async () => {
log.debug('users');
await PageObjects.settings.navigateTo();
Expand Down Expand Up @@ -91,7 +91,7 @@ export default function ({ getService, getPageObjects }) {
expect(roles.apm_system.deprecated).to.be(false);

expect(roles.apm_user.reserved).to.be(true);
expect(roles.apm_user.deprecated).to.be(false);
expect(roles.apm_user.deprecated).to.be(true);

expect(roles.beats_admin.reserved).to.be(true);
expect(roles.beats_admin.deprecated).to.be(false);
Expand Down

0 comments on commit ae42135

Please sign in to comment.