We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eff33fe commit 95b81a3Copy full SHA for 95b81a3
test/OpenApiTests/OpenApiTestContext.cs
@@ -80,10 +80,7 @@ private async Task<string> GetAsync(string requestUrl)
80
81
private static JsonElement ParseSwaggerDocument(string content)
82
{
83
- // Temporary workaround for https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3426.
84
- string patchedContent = content.Replace("\"minimum\": 0,1", "\"minimum\": 0.1");
85
-
86
- using JsonDocument jsonDocument = JsonDocument.Parse(patchedContent);
+ using JsonDocument jsonDocument = JsonDocument.Parse(content);
87
return jsonDocument.RootElement.Clone();
88
}
89
0 commit comments