From af81f9db62cdff3baaf8cc81835457940747ebe6 Mon Sep 17 00:00:00 2001 From: vmishenev Date: Tue, 23 Nov 2021 04:26:43 +0300 Subject: Add space between funs descriptions (#2235) --- plugins/base/base-test-utils/src/main/kotlin/renderers/JsoupUtils.kt | 1 + 1 file changed, 1 insertion(+) (limited to 'plugins/base/base-test-utils/src/main/kotlin/renderers') diff --git a/plugins/base/base-test-utils/src/main/kotlin/renderers/JsoupUtils.kt b/plugins/base/base-test-utils/src/main/kotlin/renderers/JsoupUtils.kt index 9e38df10..47c9608a 100644 --- a/plugins/base/base-test-utils/src/main/kotlin/renderers/JsoupUtils.kt +++ b/plugins/base/base-test-utils/src/main/kotlin/renderers/JsoupUtils.kt @@ -30,6 +30,7 @@ class B(vararg matchers: Any) : Tag("b", *matchers) class I(vararg matchers: Any) : Tag("i", *matchers) class STRIKE(vararg matchers: Any) : Tag("strike", *matchers) object Wbr : Tag("wbr") +object Br : Tag("br") private fun Any.accepts(n: Node, ignoreSpan:Boolean = true) { when (this) { is String -> assert(n is TextNode && n.text().trim() == this.trim()) { "\"$this\" expected but found: $n" } -- cgit