Fix csharp mapping code generator (#926)

This commit is contained in:
Cezary Piątek
2023-05-02 16:48:32 +02:00
committed by GitHub
parent d949dfb64c
commit 427715a38a
6 changed files with 6 additions and 6 deletions

View File

@@ -129,7 +129,7 @@ internal class MappingConverter
{
foreach (var header in response.ResponseMessage.Headers)
{
sb.AppendLine($" .WithHeader(\"{header.Key})\", {ToValueArguments(header.Value.ToArray())})");
sb.AppendLine($" .WithHeader(\"{header.Key}\", {ToValueArguments(header.Value.ToArray())})");
}
}