Skip to content

Commit

Permalink
Fix path to test fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
eliperelman committed Aug 29, 2019
1 parent cbd182f commit 317a854
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
import { take, skip } from 'rxjs/operators';
import { merge } from 'lodash';
import { ClusterClient } from 'src/core/server';
import { coreMock } from '../../../../src/core/server/mocks';
import { Plugin } from './plugin';
import { schema } from './schema';
import { coreMock } from '../../../../../src/core/server/mocks';
import { Plugin } from '../plugin';
import { schema } from '../schema';

export async function licenseMerge(xpackInfo = {}) {
return merge(
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/licensing/server/license.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { ILicense } from './types';
import { Plugin } from './plugin';
import { LICENSE_STATUS } from './constants';
import { LicenseFeature } from './license_feature';
import { setup } from '../__fixtures__/setup';
import { setup } from './__fixtures__/setup';

describe('license', () => {
let plugin: Plugin;
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/licensing/server/license_feature.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import { ILicense } from './types';
import { Plugin } from './plugin';
import { setup } from '../__fixtures__/setup';
import { setup } from './__fixtures__/setup';

describe('licensing feature', () => {
let plugin: Plugin;
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/licensing/server/plugin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { take, skip } from 'rxjs/operators';
import { ILicense } from './types';
import { Plugin } from './plugin';
import { License } from './license';
import { setup, setupOnly, licenseMerge } from '../__fixtures__/setup';
import { setup, setupOnly, licenseMerge } from './__fixtures__/setup';

describe('licensing plugin', () => {
let plugin: Plugin;
Expand Down

0 comments on commit 317a854

Please sign in to comment.