Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
b31ngd3v committed Aug 17, 2023
1 parent 950766b commit 20df483
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/test_input_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ class TestInputEngine:
PARSED_TRIAGE_DATA = {
ProductInfo("haxx", "curl", "7.59.0"): {
"default": {"comments": "", "remarks": Remarks.NewFound, "severity": ""},
"paths": {""},
"paths": {},
},
ProductInfo("haxx", "libcurl", "7.59.0"): {
"default": {"comments": "", "remarks": Remarks.Unexplored, "severity": ""},
"paths": {""},
"paths": {},
},
ProductInfo("libjpeg-turbo", "libjpeg-turbo", "2.0.1"): {
"CVE-2018-19664": {
Expand All @@ -44,19 +44,19 @@ class TestInputEngine:
"remarks": Remarks.Unexplored,
"severity": "HIGH",
},
"paths": {""},
"paths": {},
},
ProductInfo("mit", "kerberos_5", "1.15.1"): {
"default": {"comments": "", "remarks": Remarks.Confirmed, "severity": ""},
"paths": {""},
"paths": {},
},
ProductInfo("ssh", "ssh2", "2.0"): {
"default": {"comments": "", "remarks": Remarks.Mitigated, "severity": ""},
"paths": {""},
"paths": {},
},
ProductInfo("sun", "sunos", "5.4"): {
"default": {"comments": "", "remarks": Remarks.Mitigated, "severity": ""},
"paths": {""},
"paths": {},
},
}
VEX_TRIAGE_DATA = {
Expand Down

0 comments on commit 20df483

Please sign in to comment.