From 1a9a8ee6c2141d175ca5d2d5758e48b062d407f2 Mon Sep 17 00:00:00 2001 From: Terri Oda Date: Wed, 15 May 2024 15:17:27 -0700 Subject: [PATCH] fix: make code match comment intention --- test/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_cli.py b/test/test_cli.py index 0285a9df84..c60e514b1b 100644 --- a/test/test_cli.py +++ b/test/test_cli.py @@ -649,7 +649,7 @@ def test_SBOM(self, caplog): known_cves_message, ) assert ( - int(m.group("product_number")) > 2 + int(m.group("product_number")) >= 2 ), "Not enough products with cves found in output" def test_sbom_detection(self, caplog):