File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
test/Microsoft.OpenApi.Tests Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ public class OpenApiCallbackTests
96
96
97
97
[ Theory ]
98
98
[ InlineData ( true ) ]
99
- // [InlineData(false)]
99
+ [ InlineData ( false ) ]
100
100
public async Task SerializeAdvancedCallbackAsV3JsonWorksAsync ( bool produceTerseOutput )
101
101
{
102
102
// Arrange
Original file line number Diff line number Diff line change @@ -190,10 +190,10 @@ namespace Microsoft.OpenApi.Extensions
190
190
}
191
191
public static class OpenApiTypeMapper
192
192
{
193
- public static Microsoft.OpenApi.Models.JsonSchemaType IdentifierToEnumType(string identifier) { }
194
193
public static System.Type MapOpenApiPrimitiveTypeToSimpleType(this Microsoft.OpenApi.Models.OpenApiSchema schema) { }
195
194
public static Microsoft.OpenApi.Models.OpenApiSchema MapTypeToOpenApiPrimitiveType(this System.Type type) { }
196
- public static string ToIdentifier(Microsoft.OpenApi.Models.JsonSchemaType? schemaType) { }
195
+ public static string ToIdentifier(this Microsoft.OpenApi.Models.JsonSchemaType? schemaType) { }
196
+ public static Microsoft.OpenApi.Models.JsonSchemaType ToJsonSchemaType(this string identifier) { }
197
197
}
198
198
public static class StringExtensions
199
199
{
You can’t perform that action at this time.
0 commit comments