Skip to content

Commit e3126ad

Browse files
committed
fix: wrong type-format pair
Signed-off-by: Vincent Biret <[email protected]>
1 parent 9ffffb0 commit e3126ad

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/Microsoft.OpenAPI.OData.Reader.Tests/Generator/OpenApiParameterGeneratorTests.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public void CreateParametersReturnsCreatedParameters()
132132
}
133133

134134
[Fact]
135-
public void CanSeralizeAsYamlFromTheCreatedParameters()
135+
public void CanSerializeAsYamlFromTheCreatedParameters()
136136
{
137137
// Arrange
138138
IEdmModel model = EdmCoreModel.Instance;
@@ -154,7 +154,8 @@ public void CanSeralizeAsYamlFromTheCreatedParameters()
154154
explode: false
155155
schema:
156156
minimum: 0
157-
type: integer
157+
type: number
158+
format: int64
158159
".ChangeLineBreaks(), yaml);
159160
}
160161

0 commit comments

Comments
 (0)