Skip to content

Commit

Permalink
- fixes failing unit test after quotes normalziation
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Biret <[email protected]>
  • Loading branch information
baywet committed Feb 22, 2024
1 parent 6e67350 commit a0e3d6c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ public void WritesRequestGeneratorContentTypeQuotes()
method.HttpMethod = HttpMethod.Post;
AddRequestProperties();
AddRequestBodyParameters();
method.RequestBodyContentType = "application/json; profile=\"CamelCase\"";
method.RequestBodyContentType = "application/json; profile='CamelCase'";
writer.Write(method);
var result = tw.ToString();
Assert.Contains("'application/json; profile=\\'CamelCase\\''", result);
Expand Down

0 comments on commit a0e3d6c

Please sign in to comment.