File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,6 @@ export default class CxIacResult {
66 similarityID : string ;
77 filepath : string ;
88 severity : CxRealtimeEngineStatus ;
9- expectedValue : string ;
10- actualValue : string ;
119 locations : { line : number , startIndex : number , endIndex : number } [ ] ;
1210
1311 static parseResult ( resultObject : any ) : CxIacResult [ ] {
@@ -20,8 +18,6 @@ export default class CxIacResult {
2018 iacResult . similarityID = member . SimilarityID ;
2119 iacResult . filepath = member . FilePath ;
2220 iacResult . severity = member . Severity as CxRealtimeEngineStatus ;
23- iacResult . expectedValue = member . ExpectedValue ;
24- iacResult . actualValue = member . ActualValue ;
2521 iacResult . locations = Array . isArray ( member . Locations )
2622 ? member . Locations . map ( ( l : any ) => ( {
2723 line : l . Line ,
You can’t perform that action at this time.
0 commit comments