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/ShapeValueGenerator.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -222,7 +222,7 @@ class ShapeValueGenerator(
222
222
val currSymbol = generator.symbolProvider.toSymbol(currShape)
223
223
val memberName = generator.symbolProvider.toMemberName(member)
224
224
val variantName = memberName.replaceFirstChar { c -> c.uppercaseChar() }
Copy file name to clipboardExpand all lines: codegen/smithy-kotlin-codegen/src/main/kotlin/software/amazon/smithy/kotlin/codegen/rendering/smoketests/SmokeTestsRunnerGenerator.kt
+22-21Lines changed: 22 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -132,18 +132,19 @@ class SmokeTestsRunnerGenerator(
Copy file name to clipboardExpand all lines: codegen/smithy-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/rendering/smoketests/SmokeTestsRunnerGeneratorTest.kt
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,8 @@ class SmokeTestsRunnerGeneratorTest {
30
30
}
31
31
vendorParamsShape: AwsVendorParams,
32
32
vendorParams: {
33
-
region: "eu-central-1"
33
+
region: "eu-central-1",
34
+
uri: "https://foo.amazon.com"
34
35
}
35
36
}
36
37
{
@@ -109,6 +110,7 @@ class SmokeTestsRunnerGeneratorTest {
109
110
TestClient {
110
111
interceptors.add(SmokeTestsInterceptor())
111
112
region = "eu-central-1"
113
+
uri = "https://foo.amazon.com"
112
114
}.use { client ->
113
115
client.testOperation(
114
116
TestOperationRequest {
@@ -144,7 +146,6 @@ class SmokeTestsRunnerGeneratorTest {
144
146
145
147
try {
146
148
TestClient {
147
-
148
149
}.use { client ->
149
150
client.testOperation(
150
151
TestOperationRequest {
@@ -181,7 +182,6 @@ class SmokeTestsRunnerGeneratorTest {
0 commit comments