Skip to content

Commit

Permalink
Fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
krisukox committed Jan 17, 2023
1 parent 6c58eb7 commit dc6cb49
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,12 @@ public void testIncompatibleBaBranchMergeDrops() throws Exception {
SourceFileCoverage merged = SourceFileCoverage.merge(sourceFile1, sourceFile2);

assertThat(merged.getAllBranches())
.containsExactly(BranchCoverage.create(800, 2), BranchCoverage.create(800, 1));
.containsExactly(
BranchCoverage.create(800, 2),
BranchCoverage.create(800, 1),
BranchCoverage.create(800, 2),
BranchCoverage.create(800, 2),
BranchCoverage.create(800, 1));
}

@Test
Expand Down

0 comments on commit dc6cb49

Please sign in to comment.