diff options
author | Andrzej Ratajczak <andrzej.ratajczak98@gmail.com> | 2020-09-01 10:51:30 +0200 |
---|---|---|
committer | Andrzej Ratajczak <32793002+BarkingBad@users.noreply.github.com> | 2020-09-08 12:52:59 +0200 |
commit | 46c56dc71ed2c6d73a70ed4fd8255eeda2420ff4 (patch) | |
tree | 2d5d2a8f6adc2ab6f1ea27be5aef1d86c760fb50 /plugins/base/src/test/kotlin/signatures | |
parent | 883408f0d12abfba88434b41cd8d752afc7ebf35 (diff) | |
download | dokka-46c56dc71ed2c6d73a70ed4fd8255eeda2420ff4.tar.gz dokka-46c56dc71ed2c6d73a70ed4fd8255eeda2420ff4.tar.bz2 dokka-46c56dc71ed2c6d73a70ed4fd8255eeda2420ff4.zip |
Remove topologicalSort since it is no longer used
Diffstat (limited to 'plugins/base/src/test/kotlin/signatures')
-rw-r--r-- | plugins/base/src/test/kotlin/signatures/DivergentSignatureTest.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/base/src/test/kotlin/signatures/DivergentSignatureTest.kt b/plugins/base/src/test/kotlin/signatures/DivergentSignatureTest.kt index 975373b6..d72b5c33 100644 --- a/plugins/base/src/test/kotlin/signatures/DivergentSignatureTest.kt +++ b/plugins/base/src/test/kotlin/signatures/DivergentSignatureTest.kt @@ -58,7 +58,7 @@ class DivergentSignatureTest : AbstractCoreTest() { val content = writerPlugin.renderedContent("example/example/-clock/get-time.html") assert(content.count() == 1) - assert(content.select("[data-filterable-current=example/common example/jvm example/js]").single().brief == "common") + assert(content.select("[data-filterable-current=example/common example/js example/jvm]").single().brief == "common") } } } |