We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99d1d83 commit b78278bCopy full SHA for b78278b
core/generated-sources/src/test/kotlin/org/jetbrains/kotlinx/dataframe/samples/api/TestBase.kt
@@ -118,7 +118,8 @@ public open class TestBase {
118
val returnType: String
119
}
120
121
- val functions = DataFrame.readJsonStr("""
+ val functions = DataFrame.readJsonStr(
122
+ """
123
[{
124
"receiverType": "DataRow<*>",
125
"name": "rowStd",
@@ -215,7 +216,8 @@ public open class TestBase {
215
216
"parameters": [],
217
"returnType": "List<T>"
218
}]
- """.trimIndent()).cast<Functions>(verify = true)
219
+ """.trimIndent()
220
+ ).cast<Functions>(verify = true)
221
222
/**
223
* Asserts that all elements of the iterable are equal to each other
0 commit comments