Skip to content

Commit

Permalink
Fix and unskip functional test (#96004)
Browse files Browse the repository at this point in the history
  • Loading branch information
jportner authored Apr 1, 2021
1 parent 2abd628 commit 5743919
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions x-pack/test/functional/apps/security/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ export default function ({ getService, getPageObjects }) {
const config = getService('config');
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 +90,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 5743919

Please sign in to comment.