diff options
author | Paweł Marks <pmarks@virtuslab.com> | 2020-08-14 10:01:13 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-08-14 14:16:41 +0200 |
commit | 6c635551ed3ea0cfe5f04b54a98cb28225061d26 (patch) | |
tree | 3157ca77ab660686fa1e75c8e967f2e08dfc490e /plugins/base/src/test | |
parent | 9623efd152c471ae36a7daf54e669b18db9976b3 (diff) | |
download | dokka-6c635551ed3ea0cfe5f04b54a98cb28225061d26.tar.gz dokka-6c635551ed3ea0cfe5f04b54a98cb28225061d26.tar.bz2 dokka-6c635551ed3ea0cfe5f04b54a98cb28225061d26.zip |
Update an old test that had an assertion the other way around
Diffstat (limited to 'plugins/base/src/test')
-rw-r--r-- | plugins/base/src/test/kotlin/signatures/SignatureTest.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/base/src/test/kotlin/signatures/SignatureTest.kt b/plugins/base/src/test/kotlin/signatures/SignatureTest.kt index 04d4f88c..421dd97f 100644 --- a/plugins/base/src/test/kotlin/signatures/SignatureTest.kt +++ b/plugins/base/src/test/kotlin/signatures/SignatureTest.kt @@ -176,7 +176,7 @@ class SignatureTest : AbstractCoreTest() { ) { renderingStage = { _, _ -> writerPlugin.writer.renderedContent("root/example/simple-fun.html").firstSignature().match( - "fun <", A("T"), " : ", A("Any"), "?> ", A("simpleFun"), "(): ", + "fun <", A("T"), "> ", A("simpleFun"), "(): ", A("T"), Span() ) } |