Skip to content

Commit

Permalink
[Lint] fixed folder to snake case (#220)
Browse files Browse the repository at this point in the history
Signed-off-by: Kawika Avilla <kavilla414@gmail.com>
  • Loading branch information
kavilla authored Mar 23, 2021
1 parent e4d5c2f commit ca825b4
Show file tree
Hide file tree
Showing 11 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/core/server/saved_objects/migrations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export { MigrationResult } from './core';
export {
OpenSearchDashboardsMigrator,
IOpenSearchDashboardsMigrator,
} from './opensearch-dashboards';
} from './opensearch_dashboards';
export {
SavedObjectMigrationFn,
SavedObjectMigrationMap,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

import { mockOpenSearchDashboardsMigrator } from '../../migrations/opensearch-dashboards/opensearch_dashboards_migrator.mock';
import { mockOpenSearchDashboardsMigrator } from '../../migrations/opensearch_dashboards/opensearch_dashboards_migrator.mock';

export const migratorInstanceMock = mockOpenSearchDashboardsMigrator.create();
export const OpenSearchDashboardsMigratorMock = jest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

import { mockOpenSearchDashboardsMigrator } from './migrations/opensearch-dashboards/opensearch_dashboards_migrator.mock';
import { mockOpenSearchDashboardsMigrator } from './migrations/opensearch_dashboards/opensearch_dashboards_migrator.mock';
import { savedObjectsClientProviderMock } from './service/lib/scoped_client_provider.mock';
import { typeRegistryMock } from './saved_objects_type_registry.mock';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/
import { SavedObjectsRepository } from './repository';
import { mockOpenSearchDashboardsMigrator } from '../../migrations/opensearch-dashboards/opensearch_dashboards_migrator.mock';
import { mockOpenSearchDashboardsMigrator } from '../../migrations/opensearch_dashboards/opensearch_dashboards_migrator.mock';
import { OpenSearchDashboardsMigrator } from '../../migrations';
import { SavedObjectTypeRegistry } from '../../saved_objects_type_registry';

Expand Down
2 changes: 1 addition & 1 deletion src/core/server/saved_objects/status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { Observable, combineLatest } from 'rxjs';
import { startWith, map } from 'rxjs/operators';
import { ServiceStatus, ServiceStatusLevels } from '../status';
import { SavedObjectStatusMeta } from './types';
import { OpenSearchDashboardsMigratorStatus } from './migrations/opensearch-dashboards';
import { OpenSearchDashboardsMigratorStatus } from './migrations/opensearch_dashboards';

export const calculateStatus$ = (
rawMigratorStatus$: Observable<OpenSearchDashboardsMigratorStatus>,
Expand Down

0 comments on commit ca825b4

Please sign in to comment.