Skip to content

Commit

Permalink
fix: Add missing delimiter for string array endpoint param in test co…
Browse files Browse the repository at this point in the history
…degen.
  • Loading branch information
Sichan Yoo committed Oct 28, 2024
1 parent 08334ae commit e6c7db2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ class EndpointTestGenerator(
}

is ArrayValue -> {
val castStmt = if (castToAnyHashable) " as [AnyHashable]$delimeter" else ""
val castStmt = if (castToAnyHashable) " as [AnyHashable]$delimeter" else delimeter
writer.openBlock("[", "]$castStmt") {
value.values.forEachIndexed { idx, item ->
writer.call {
Expand Down

0 comments on commit e6c7db2

Please sign in to comment.