We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b08656 commit 9ac5adaCopy full SHA for 9ac5ada
1 file changed
tests/test_applets/test_applet_findings.py
@@ -28,12 +28,12 @@ async def after_scan_1(self):
28
assert {f.confidence for f in findings} == {"UNKNOWN"}
29
assert {f.confidence_score for f in findings} == {1}
30
31
- # risk should auto-sync from finding_max_severity via CVSS: HIGH -> 8.9
+ # risk should auto-sync from finding_max_severity via CVSS: HIGH -> 7.0
32
www_asset = await self.bbot_server.get_asset(host="www.evilcorp.com")
33
- assert www_asset.risk == 8.9
+ assert www_asset.risk == 7.0
34
assert www_asset.risk_override == False
35
www2_asset = await self.bbot_server.get_asset(host="www2.evilcorp.com")
36
- assert www2_asset.risk == 8.9
+ assert www2_asset.risk == 7.0
37
assert www2_asset.risk_override == False
38
39
# api.evilcorp.com has no findings yet → risk should be None
0 commit comments