Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
smirnovaae committed Nov 8, 2023
1 parent b4f20b6 commit a01b17f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ void whenCoverageUnstable_failCoverageStabilityCheck() {

assertFalse(stableCheck.test(contract));

int expectedIssues = 2;
int expectedIssues = 1;

assertEquals(expectedIssues, issues.size());
issues.forEach(issue -> assertTrue(issue.contains("enrollment changed")));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ void whenCoverageUnstable_failCoverageStabilityCheck() {

assertFalse(stableCheck.test(contract));

int expectedIssues = 2;
int expectedIssues = 1;

assertEquals(expectedIssues, issues.size());
issues.forEach(issue -> assertTrue(issue.contains("enrollment changed")));
Expand Down

0 comments on commit a01b17f

Please sign in to comment.