From ff5708cf56d496bd2d9b66afc476df02507ec574 Mon Sep 17 00:00:00 2001 From: andrecs <12188364+andrecsilva@users.noreply.github.com> Date: Fri, 24 Jan 2025 11:00:35 -0300 Subject: [PATCH] Fixed sonar results test --- tests/test_sonar_results.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_sonar_results.py b/tests/test_sonar_results.py index 54227d4d..07094d61 100644 --- a/tests/test_sonar_results.py +++ b/tests/test_sonar_results.py @@ -43,7 +43,7 @@ def test_parse_issues_json(): def test_parse_hotspots_json(): results = SonarResultSet.from_json(SAMPLE_DIR / "sonar_hotspots.json") - assert len(results) == 4 + assert len(results) == 5 def test_combined_json(tmpdir): @@ -54,7 +54,7 @@ def test_combined_json(tmpdir): ) results = SonarResultSet.from_json(Path(tmpdir).joinpath("combined.json")) - assert len(results) == 38 + assert len(results) == 39 def test_empty_issues(tmpdir, caplog):