@@ -13,6 +13,7 @@ import software.amazon.smithy.rust.codegen.client.testutil.testCodegenContext
13
13
import software.amazon.smithy.rust.codegen.core.smithy.CoreRustSettings
14
14
import software.amazon.smithy.rust.codegen.core.smithy.RuntimeCrateLocation
15
15
import software.amazon.smithy.rust.codegen.core.smithy.RustCrate
16
+ import software.amazon.smithy.rust.codegen.core.testutil.IntegrationTestParams
16
17
import software.amazon.smithy.rust.codegen.core.testutil.TestRuntimeConfig
17
18
import software.amazon.smithy.rust.codegen.core.testutil.asSmithyModel
18
19
import software.amazon.smithy.rust.codegen.core.testutil.testRustSettings
@@ -39,9 +40,10 @@ fun awsSdkIntegrationTest(
39
40
test : (ClientCodegenContext , RustCrate ) -> Unit = { _, _ -> },
40
41
) =
41
42
clientIntegrationTest(
42
- model, runtimeConfig = AwsTestRuntimeConfig ,
43
- additionalSettings = ObjectNode .builder()
44
- .withMember(
43
+ model,
44
+ IntegrationTestParams (
45
+ runtimeConfig = AwsTestRuntimeConfig ,
46
+ additionalSettings = ObjectNode .builder().withMember(
45
47
" customizationConfig" ,
46
48
ObjectNode .builder()
47
49
.withMember(
@@ -51,6 +53,7 @@ fun awsSdkIntegrationTest(
51
53
.build(),
52
54
).build(),
53
55
)
54
- .withMember(" codegen" , ObjectNode .builder().withMember(" includeFluentClient" , false ).build()).build(),
56
+ .withMember(" codegen" , ObjectNode .builder().withMember(" includeFluentClient" , false ).build()).build(),
57
+ ),
55
58
test = test,
56
59
)
0 commit comments