Skip to content

Commit 9a7908b

Browse files
committed
fix string template
1 parent 4f794d4 commit 9a7908b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/benchmarks/service-benchmarks/jvm/src/aws/sdk/kotlin/benchmarks/service/definitions/SecretsManagerProtocolBenchmark.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class SecretsManagerProtocolBenchmark : ServiceProtocolBenchmark<SecretsManagerC
3939
},
4040
Tag {
4141
key = "Iteration"
42-
value = "$iteration.padded()"
42+
value = "${iteration.padded()}"
4343
},
4444
)
4545

@@ -159,7 +159,7 @@ class SecretsManagerProtocolBenchmark : ServiceProtocolBenchmark<SecretsManagerC
159159
},
160160
Filter {
161161
key = FilterNameStringType.fromValue("tag-value")
162-
values = listOf("$iteration.padded()")
162+
values = listOf("${iteration.padded()}")
163163
},
164164
)
165165

0 commit comments

Comments
 (0)