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 513664a commit 09a99e7Copy full SHA for 09a99e7
scaladoc/test/dotty/tools/scaladoc/no-link-warnings/LinkWarningTest.scala
@@ -14,6 +14,7 @@ class LinkWarningsTest extends ScaladocTest("noLinkWarnings"):
14
15
override def runTest = afterRendering {
16
val diagnostics = summon[DocContext].compilerContext.reportedDiagnostics
17
- assertEquals("There should be exactly one warning", 1, diagnostics.warningMsgs.size)
+ val filteredWarnings = diagnostics.warningMsgs.filter(_ != "1 warning found")
18
+ assertEquals("There should be exactly one warning", 1, filteredWarnings.size)
19
assertNoErrors(diagnostics)
20
}
0 commit comments