diff options
author | Marcin Aman <marcin.aman@gmail.com> | 2021-07-22 14:29:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-22 14:29:25 +0200 |
commit | bb712835958c823e06db8c39c0a1d32493f095b8 (patch) | |
tree | 3404f71e2014c1b6ab3edb566be32caaa5ed9db3 /plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt | |
parent | b6dce5370b0c90932127499a903453b199e69c5a (diff) | |
download | dokka-bb712835958c823e06db8c39c0a1d32493f095b8.tar.gz dokka-bb712835958c823e06db8c39c0a1d32493f095b8.tar.bz2 dokka-bb712835958c823e06db8c39c0a1d32493f095b8.zip |
Fix overflow in throws tables (#2028)
Diffstat (limited to 'plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt')
-rw-r--r-- | plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt | 6 |
1 files changed, 3 insertions, 3 deletions
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 { |