Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Two small typofixes #396

Merged
merged 1 commit into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ssvc/decision_points/safety_impact.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"Operator resiliency: Requires action by system operator to maintain safe system state as a result of exploitation of the "
"vulnerability where operator actions would be well within expected operator abilities; OR causes a minor occupational safety hazard. "
"System resiliency: Small reduction in built-in system safety margins; OR small reduction in system functional capabilities that support safe operation. "
"Environment Minor externalities (property damage, environmental damage, etc.) imposed on other parties. "
"Environment: Minor externalities (property damage, environmental damage, etc.) imposed on other parties. "
"Financial Financial losses, which are not readily absorbable, to multiple persons. "
"Psychological: Emotional or psychological harm, sufficient to be cause for counselling or therapy, to multiple persons.",
)
Expand Down
2 changes: 1 addition & 1 deletion src/test/test_cvss_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def setUp(self) -> None:
name=f"test_{i}",
description=f"test_{i}",
version="1.0",
key="TDP{i}",
key=f"TDP{i}",
values=(
SsvcDecisionPointValue(
name=f"yes_{i}",
Expand Down