From 78914b6f23e4b4acb03ed0a6686e384b3a1d14ad Mon Sep 17 00:00:00 2001 From: Gilles Dubochet Date: Fri, 4 Feb 2011 19:31:29 +0000 Subject: [scaladoc] Likely fix for broken build. --- test/scaladoc/model/CommentFactoryTest.scala | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'test/scaladoc/model/CommentFactoryTest.scala') diff --git a/test/scaladoc/model/CommentFactoryTest.scala b/test/scaladoc/model/CommentFactoryTest.scala index 5a30b65078..204baaa05b 100644 --- a/test/scaladoc/model/CommentFactoryTest.scala +++ b/test/scaladoc/model/CommentFactoryTest.scala @@ -56,14 +56,21 @@ object Test extends Properties("CommentFactory") { """ /** One `two` * three */""", - Chain(List(Text("One "), Monospace("two"), Text("\nthree"))) + Chain(List(Text("One "), Monospace("two"), Text("\n"), Text("three"))) ) property("parse") = parse( """ /** One `two` * three */""", - Chain(List(Text("One "), Monospace("two"), Text("\n three"))) + Chain(List(Text("One "), Monospace("two"), Text("\n"), Text(" three"))) + ) + + property("parse") = parse( + """ +/** One + * `two` three */""", + Chain(List(Text("One"), Text("\n"), Monospace("two"), Text(" three"))) ) } -- cgit v1.2.3