You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: codegen/smithy-kotlin-codegen/src/main/kotlin/software/amazon/smithy/kotlin/codegen/rendering/StructureGenerator.kt
Copy file name to clipboardExpand all lines: codegen/smithy-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/rendering/StructureGeneratorTest.kt
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -221,7 +221,7 @@ class StructureGeneratorTest {
221
221
* construct an [com.test.model.Qux] inside the given [block]
222
222
*/
223
223
public fun quux(block: com.test.model.Qux.Builder.() -> kotlin.Unit) {
224
-
this.quux = com.test.model.Qux.invoke(block)
224
+
this.quux = comTestModelQuxDslBuilderRef(block)
225
225
}
226
226
227
227
internal fun correctErrors(): Builder {
@@ -233,6 +233,11 @@ class StructureGeneratorTest {
0 commit comments