From 3b93fac5dd27dc35ec9678391e47717045ce08b4 Mon Sep 17 00:00:00 2001 From: JanBessai Date: Wed, 18 Jul 2018 15:23:16 +0200 Subject: [PATCH] Quick fix to get new Scala collections compatibility in test. --- .../src/test/scala/scoverage/PluginCoverageTest.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scalac-scoverage-plugin/src/test/scala/scoverage/PluginCoverageTest.scala b/scalac-scoverage-plugin/src/test/scala/scoverage/PluginCoverageTest.scala index 20c9b895..7ab4fef2 100644 --- a/scalac-scoverage-plugin/src/test/scala/scoverage/PluginCoverageTest.scala +++ b/scalac-scoverage-plugin/src/test/scala/scoverage/PluginCoverageTest.scala @@ -264,8 +264,8 @@ class PluginCoverageTest | }""".stripMargin) assert(!compiler.reporter.hasErrors) // 2 statements for the two applies in Seq, one for each literal which is 6, one for the flat map, - // one for the map, one for the yield op. - compiler.assertNMeasuredStatements(11) + // one for the map. + compiler.assertNMeasuredStatements(10) } test("plugin should not instrument local macro implementation") {