Skip to content

Commit

Permalink
fix double-slash typos
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Jun 8, 2021
1 parent c8430bf commit 1889614
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
full_name: 'Guest',
});

await esArchiver.load('x-pack/test/functional/es_archives//empty_kibana');
await esArchiver.load('x-pack/test/functional/es_archives/empty_kibana');
await PageObjects.security.forceLogout();
});

after(async () => {
await security.user.delete('anonymous_user');
await esArchiver.unload('x-pack/test/functional/es_archives//empty_kibana');
await esArchiver.unload('x-pack/test/functional/es_archives/empty_kibana');
});

beforeEach(async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
full_name: 'Admin',
});

await esArchiver.load('x-pack/test/functional/es_archives//empty_kibana');
await esArchiver.load('x-pack/test/functional/es_archives/empty_kibana');
await PageObjects.security.forceLogout();
});

after(async () => {
await security.user.delete(testCredentials.username);
await esArchiver.unload('x-pack/test/functional/es_archives//empty_kibana');
await esArchiver.unload('x-pack/test/functional/es_archives/empty_kibana');
});

beforeEach(async () => {
Expand Down
4 changes: 2 additions & 2 deletions x-pack/test/security_functional/tests/oidc/url_capture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
.send({ roles: ['superuser'], enabled: true, rules: { field: { 'realm.name': 'oidc1' } } })
.expect(200);

await esArchiver.load('x-pack/test/functional/es_archives//empty_kibana');
await esArchiver.load('x-pack/test/functional/es_archives/empty_kibana');
});

after(async () => {
await esArchiver.unload('x-pack/test/functional/es_archives//empty_kibana');
await esArchiver.unload('x-pack/test/functional/es_archives/empty_kibana');
});

afterEach(async () => {
Expand Down
4 changes: 2 additions & 2 deletions x-pack/test/security_functional/tests/saml/url_capture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
.send({ roles: ['superuser'], enabled: true, rules: { field: { 'realm.name': 'saml1' } } })
.expect(200);

await esArchiver.load('x-pack/test/functional/es_archives//empty_kibana');
await esArchiver.load('x-pack/test/functional/es_archives/empty_kibana');
});

after(async () => {
await esArchiver.unload('x-pack/test/functional/es_archives//empty_kibana');
await esArchiver.unload('x-pack/test/functional/es_archives/empty_kibana');
});

afterEach(async () => {
Expand Down

0 comments on commit 1889614

Please sign in to comment.