We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 552f0eb commit ff5708cCopy full SHA for ff5708c
tests/test_sonar_results.py
@@ -43,7 +43,7 @@ def test_parse_issues_json():
43
44
def test_parse_hotspots_json():
45
results = SonarResultSet.from_json(SAMPLE_DIR / "sonar_hotspots.json")
46
- assert len(results) == 4
+ assert len(results) == 5
47
48
49
def test_combined_json(tmpdir):
@@ -54,7 +54,7 @@ def test_combined_json(tmpdir):
54
)
55
56
results = SonarResultSet.from_json(Path(tmpdir).joinpath("combined.json"))
57
- assert len(results) == 38
+ assert len(results) == 39
58
59
60
def test_empty_issues(tmpdir, caplog):
0 commit comments