Skip to content

Commit 31bc7e7

Browse files
committed
Remove expectedValue and actualValue from CxIacResult parsing
1 parent fb24e55 commit 31bc7e7

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/main/iacRealtime/CxIac.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)