From 94b148ccdcb88f2544c222f73f5c734ac78ccd96 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Mon, 31 Jan 2022 23:28:22 -0500 Subject: internal/cvss: more tests --- internal/cvss/v3metric.go | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'internal/cvss/v3metric.go') diff --git a/internal/cvss/v3metric.go b/internal/cvss/v3metric.go index e9a6763..fc4c860 100644 --- a/internal/cvss/v3metric.go +++ b/internal/cvss/v3metric.go @@ -323,12 +323,9 @@ func (m v3Metric) Key() Key { // Convert string to CVSS 3.1 metric. func getV3Metric(version Version, s string) (v3Metric, error) { - // get metric - m, ok := v3MetricStrLut[s] - if !ok { + if m, ok := v3MetricStrLut[s]; ok { + return m, nil + } else { return v3InvalidMetric, newBadMetric(version, s) } - - // return success - return m, nil } -- cgit v1.2.3