From bb712835958c823e06db8c39c0a1d32493f095b8 Mon Sep 17 00:00:00 2001 From: Marcin Aman Date: Thu, 22 Jul 2021 14:29:25 +0200 Subject: Fix overflow in throws tables (#2028) --- plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/base/src/test/kotlin') diff --git a/plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt b/plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt index 300e99d2..26c072fd 100644 --- a/plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt +++ b/plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt @@ -446,7 +446,7 @@ class ContentForParamsTest : BaseAbstractTest() { } after { group { pWrapped("a normal comment") } - header(4) { +"Throws" } + header(2) { +"Throws" } platformHinted { table { group { @@ -505,7 +505,7 @@ class ContentForParamsTest : BaseAbstractTest() { } after { group { pWrapped("a normal comment") } - header(4) { +"Throws" } + header(2) { +"Throws" } platformHinted { table { group { @@ -585,7 +585,7 @@ class ContentForParamsTest : BaseAbstractTest() { } after { group { pWrapped("a normal comment") } - header(4) { +"Throws" } + header(2) { +"Throws" } platformHinted { table { group { -- cgit