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 413060b commit 0cb61eeCopy full SHA for 0cb61ee
scalac-scoverage-plugin/src/test/scala/scoverage/CoverageAggregatorTest.scala
@@ -42,7 +42,8 @@ class CoverageAggregatorTest extends FreeSpec with Matchers {
42
IOUtils.reportFile(dir2, debug = false),
43
IOUtils.reportFile(dir3, debug = false))
44
)
45
- aggregated.statements.map(_.copy(id = 0)).toSet shouldEqual
+ aggregated.statements.toSet.size shouldBe 3
46
+ aggregated.statements.map(_.copy(id = 0)).toSet shouldBe
47
(coverage1.statements ++ coverage2.statements ++ coverage3.statements).map(_.copy(id = 0)).toSet
48
}
49
0 commit comments