We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69b21c9 commit 8212dc0Copy full SHA for 8212dc0
mirai-core/src/commonTest/kotlin/testFramework/codegen/test/visitors/ValueDescAnalyzerTest.kt
@@ -68,7 +68,11 @@ class ValueDescAnalyzerTest {
68
analyzeAndRender(arrayOf("1"))
69
)
70
assertEquals(
71
- "arrayOf(arrayOf(1))",
+ """
72
+ arrayOf(
73
+ arrayOf(1),
74
+ )
75
+ """.trimIndent(),
76
analyzeAndRender(arrayOf(arrayOf(1)))
77
78
}
@@ -122,7 +126,7 @@ class ValueDescAnalyzerTest {
122
126
123
127
"""
124
128
${TestNesting::class.qualifiedName}(
125
- nested=${TestNesting.Nested::class}(
129
+ nested=${TestNesting.Nested::class.qualifiedName}(
130
value="test",
131
),
132
0 commit comments