Skip to content

Commit

Permalink
Fixed sonar results test
Browse files Browse the repository at this point in the history
  • Loading branch information
andrecsilva committed Jan 24, 2025
1 parent 552f0eb commit ff5708c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_sonar_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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):
Expand Down

0 comments on commit ff5708c

Please sign in to comment.