Skip to content

Commit

Permalink
Use assert from kotlin.test
Browse files Browse the repository at this point in the history
  • Loading branch information
vmishenev committed Oct 19, 2023
1 parent b3e3bb2 commit ac7e111
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import org.jsoup.Jsoup
import utils.TestOutputWriterPlugin
import kotlin.test.Test
import kotlin.test.assertEquals
import kotlin.test.assertTrue

internal class JavadocAccessorNamingTest : AbstractJavadocTemplateMapTest() {

Expand Down Expand Up @@ -56,7 +57,7 @@ internal class JavadocAccessorNamingTest : AbstractJavadocTemplateMapTest() {
.map { it.text() }
.toSet()
// In K2 name of accessors parameter is `value`
assert(
assertTrue(
setOf(
"getIssuesFetched()",
"setIssuesFetched(Integer issuesFetched)",
Expand Down

0 comments on commit ac7e111

Please sign in to comment.