Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
These enums were moved to a more central location.
  • Loading branch information
rylnd committed Jun 13, 2023
1 parent 302a153 commit c53a7ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
* 2.0.
*/

import { RiskWeightTypes } from '../../../common/risk_engine';
import {
buildCategoryScoreAssignment,
buildCategoryWeights,
buildWeightingOfScoreByCategory,
RiskWeightTypes,
} from './category_weights';

describe('buildCategoryWeights', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
import { loggerMock } from '@kbn/logging-mocks';

import { RISK_SCORE_PREVIEW_URL } from '../../../../common/constants';
import { RiskCategories, RiskWeightTypes } from '../../../../common/risk_engine';
import {
serverMock,
requestContextMock,
requestMock,
} from '../../detection_engine/routes/__mocks__';
import { RiskCategories, RiskWeightTypes } from '../category_weights';
import { riskScoreService } from '../risk_score_service';
import { riskScoreServiceMock } from '../risk_score_service.mock';
import { riskScorePreviewRoute } from './risk_score_preview_route';
Expand Down

0 comments on commit c53a7ed

Please sign in to comment.