From 2b5ac5aa5fe46bd3eb3eba3de2eca68a09833703 Mon Sep 17 00:00:00 2001 From: Paweł Wiejacha Date: Fri, 22 Aug 2014 09:15:01 +0200 Subject: SI-8810 scaladoc: fixed code block indentation normalization --- test/scaladoc/scalacheck/HtmlFactoryTest.scala | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'test/scaladoc/scalacheck') diff --git a/test/scaladoc/scalacheck/HtmlFactoryTest.scala b/test/scaladoc/scalacheck/HtmlFactoryTest.scala index ef70e0bf21..da0f253a37 100644 --- a/test/scaladoc/scalacheck/HtmlFactoryTest.scala +++ b/test/scaladoc/scalacheck/HtmlFactoryTest.scala @@ -659,6 +659,7 @@ object Test extends Properties("HtmlFactory") { s.contains("
two lines, one useful
") && s.contains("
line1\nline2\nline3\nline4
") && s.contains("
a ragged example\na (condition)\n  the t h e n branch\nan alternative\n  the e l s e branch
") && + s.contains("
Trait example {\n  Val x = a\n  Val y = b\n}
") && s.contains("
l1\n\nl2\n\nl3\n\nl4\n\nl5
") } case _ => false @@ -683,7 +684,7 @@ object Test extends Properties("HtmlFactory") { oneAuthor match { case node: scala.xml.Node => { val s = node.toString - s.contains("
Author:
") + s.contains("
Author:
") && s.contains("

The Only Author\n

") } case _ => false @@ -696,8 +697,8 @@ object Test extends Properties("HtmlFactory") { twoAuthors match { case node: scala.xml.Node => { val s = node.toString - s.contains("
Authors:
") - s.contains("

The First Author\n

") + s.contains("
Authors:
") && + s.contains("

The First Author

") && s.contains("

The Second Author\n

") } case _ => false -- cgit v1.2.3