File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import {
1111} from './base-converter' ;
1212import { conditionallyProvideAttribute } from './utils/global' ;
1313import { DEFAULT_STATIC_CODE_ANALYSIS_NIST_TAGS } from './mappings/CciNistMappingData' ;
14- import { NIST2CCI } from './mappings/CciNistMapping' ;
14+ import { CCI2NIST } from './mappings/CciNistMapping' ;
1515
1616const IMPACT_MAPPING : Map < string , number > = new Map ( [
1717 [ 'critical' , 0.9 ] ,
@@ -147,7 +147,7 @@ function extractCci(input: IIdent | IIdent[]): string[] {
147147}
148148
149149function nistTag ( input : IIdent | IIdent [ ] ) : string [ ] {
150- return NIST2CCI ( extractCci ( input ) , DEFAULT_STATIC_CODE_ANALYSIS_NIST_TAGS ) ;
150+ return CCI2NIST ( extractCci ( input ) , DEFAULT_STATIC_CODE_ANALYSIS_NIST_TAGS ) ;
151151}
152152
153153/**
You can’t perform that action at this time.
0 commit comments