Skip to content

Commit ff5708c

Browse files
committed
Fixed sonar results test
1 parent 552f0eb commit ff5708c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_sonar_results.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def test_parse_issues_json():
4343

4444
def test_parse_hotspots_json():
4545
results = SonarResultSet.from_json(SAMPLE_DIR / "sonar_hotspots.json")
46-
assert len(results) == 4
46+
assert len(results) == 5
4747

4848

4949
def test_combined_json(tmpdir):
@@ -54,7 +54,7 @@ def test_combined_json(tmpdir):
5454
)
5555

5656
results = SonarResultSet.from_json(Path(tmpdir).joinpath("combined.json"))
57-
assert len(results) == 38
57+
assert len(results) == 39
5858

5959

6060
def test_empty_issues(tmpdir, caplog):

0 commit comments

Comments
 (0)